From cede30416f9730b0ca106e97b3ed9a25a09d3386 Mon Sep 17 00:00:00 2001 From: Zhengyu Gu Date: Mon, 13 Jan 2025 13:50:05 +0000 Subject: [PATCH] 8347482: Remove unused field in ParkEvent Reviewed-by: dholmes --- src/hotspot/share/runtime/park.hpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/hotspot/share/runtime/park.hpp b/src/hotspot/share/runtime/park.hpp index 1af24f86397..6d8f67edb9b 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 ; }