diff --git a/src/hotspot/share/runtime/park.hpp b/src/hotspot/share/runtime/park.hpp index 1af24f863972f..6d8f67edb9b35 100644 --- a/src/hotspot/share/runtime/park.hpp +++ b/src/hotspot/share/runtime/park.hpp @@ -118,8 +118,6 @@ class ParkEvent : public PlatformEvent { Thread * AssociatedWith ; public: - // MCS-CLH list linkage and Native Mutex/Monitor - ParkEvent * volatile ListNext ; volatile int TState ; volatile int Notified ; // for native monitor construct @@ -139,7 +137,6 @@ class ParkEvent : public PlatformEvent { ParkEvent() : PlatformEvent() { AssociatedWith = nullptr ; FreeNext = nullptr ; - ListNext = nullptr ; TState = 0 ; Notified = 0 ; }