Skip to content

Commit 455cfae

Browse files
author
Daniel D. Daugherty
committedSep 20, 2023
8315880: change LockingMode default from LM_LEGACY to LM_LIGHTWEIGHT
Reviewed-by: dholmes, rkennke, stefank
1 parent 9e00949 commit 455cfae

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎src/hotspot/share/runtime/globals.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1986,11 +1986,11 @@ const int ObjectAlignmentInBytes = 8;
19861986
"Mark all threads after a safepoint, and clear on a modify " \
19871987
"fence. Add cleanliness checks.") \
19881988
\
1989-
product(int, LockingMode, LM_LEGACY, \
1989+
product(int, LockingMode, LM_LIGHTWEIGHT, \
19901990
"Select locking mode: " \
19911991
"0: monitors only (LM_MONITOR), " \
1992-
"1: monitors & legacy stack-locking (LM_LEGACY, default), " \
1993-
"2: monitors & new lightweight locking (LM_LIGHTWEIGHT)") \
1992+
"1: monitors & legacy stack-locking (LM_LEGACY), " \
1993+
"2: monitors & new lightweight locking (LM_LIGHTWEIGHT, default)") \
19941994
range(0, 2) \
19951995
\
19961996
product(uint, TrimNativeHeapInterval, 0, EXPERIMENTAL, \

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Sep 20, 2023

@openjdk-notifier[bot]
Please sign in to comment.