Skip to content

Commit 4cc19ba

Browse files
committed
8355650: Remove unused fields in ParkEvent
Reviewed-by: coleenp
1 parent bccf057 commit 4cc19ba

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/hotspot/share/runtime/park.hpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -117,10 +117,6 @@ class ParkEvent : public PlatformEvent {
117117
// Current association
118118
Thread * AssociatedWith ;
119119

120-
public:
121-
volatile int TState ;
122-
volatile int Notified ; // for native monitor construct
123-
124120
private:
125121
static ParkEvent * volatile FreeList ;
126122
static volatile int ListLock ;
@@ -137,8 +133,6 @@ class ParkEvent : public PlatformEvent {
137133
ParkEvent() : PlatformEvent() {
138134
AssociatedWith = nullptr ;
139135
FreeNext = nullptr ;
140-
TState = 0 ;
141-
Notified = 0 ;
142136
}
143137

144138
// We use placement-new to force ParkEvent instances to be

0 commit comments

Comments
 (0)