8347482: Remove unused field in ParkEvent

Reviewed-by: dholmes
This commit is contained in:
Zhengyu Gu 2025-01-13 13:50:05 +00:00
parent fa5ff82eb3
commit cede30416f

View File

@ -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 ;
}