We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bccf057 commit 4cc19baCopy full SHA for 4cc19ba
src/hotspot/share/runtime/park.hpp
@@ -117,10 +117,6 @@ class ParkEvent : public PlatformEvent {
117
// Current association
118
Thread * AssociatedWith ;
119
120
- public:
121
- volatile int TState ;
122
- volatile int Notified ; // for native monitor construct
123
-
124
private:
125
static ParkEvent * volatile FreeList ;
126
static volatile int ListLock ;
@@ -137,8 +133,6 @@ class ParkEvent : public PlatformEvent {
137
133
ParkEvent() : PlatformEvent() {
138
134
AssociatedWith = nullptr ;
139
135
FreeNext = nullptr ;
140
- TState = 0 ;
141
- Notified = 0 ;
142
136
}
143
144
// We use placement-new to force ParkEvent instances to be
0 commit comments