Skip to content

Commit cede304

Browse files
committed
8347482: Remove unused field in ParkEvent
Reviewed-by: dholmes
1 parent fa5ff82 commit cede304

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/hotspot/share/runtime/park.hpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,6 @@ class ParkEvent : public PlatformEvent {
118118
Thread * AssociatedWith ;
119119

120120
public:
121-
// MCS-CLH list linkage and Native Mutex/Monitor
122-
ParkEvent * volatile ListNext ;
123121
volatile int TState ;
124122
volatile int Notified ; // for native monitor construct
125123

@@ -139,7 +137,6 @@ class ParkEvent : public PlatformEvent {
139137
ParkEvent() : PlatformEvent() {
140138
AssociatedWith = nullptr ;
141139
FreeNext = nullptr ;
142-
ListNext = nullptr ;
143140
TState = 0 ;
144141
Notified = 0 ;
145142
}

0 commit comments

Comments
 (0)