Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions src/hotspot/share/runtime/park.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -139,7 +137,6 @@ class ParkEvent : public PlatformEvent {
ParkEvent() : PlatformEvent() {
AssociatedWith = nullptr ;
FreeNext = nullptr ;
ListNext = nullptr ;
TState = 0 ;
Notified = 0 ;
}
Expand Down