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 fa5ff82 commit cede304Copy full SHA for cede304
src/hotspot/share/runtime/park.hpp
@@ -118,8 +118,6 @@ class ParkEvent : public PlatformEvent {
118
Thread * AssociatedWith ;
119
120
public:
121
- // MCS-CLH list linkage and Native Mutex/Monitor
122
- ParkEvent * volatile ListNext ;
123
volatile int TState ;
124
volatile int Notified ; // for native monitor construct
125
@@ -139,7 +137,6 @@ class ParkEvent : public PlatformEvent {
139
137
ParkEvent() : PlatformEvent() {
140
138
AssociatedWith = nullptr ;
141
FreeNext = nullptr ;
142
- ListNext = nullptr ;
143
TState = 0 ;
144
Notified = 0 ;
145
}
0 commit comments