File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ objectMonitorExit(J9VMThread* vmStruct, j9object_t object)
110
110
}
111
111
} else {
112
112
j9objectmonitor_t newLock = 0 ;
113
- I_32 casSuccess = FALSE;
113
+ BOOLEAN casSuccess = FALSE;
114
114
if (0x00 == count ) {
115
115
/* Just release the flatlock. */
116
116
} else if ((count & OBJECT_HEADER_LOCK_LEARNING ) && J9_ARE_ANY_BITS_SET (count , OBJECT_HEADER_LOCK_LEARNING_RECURSION_MASK )) {
@@ -149,7 +149,7 @@ objectMonitorExit(J9VMThread* vmStruct, j9object_t object)
149
149
J9_STORE_LOCKWORD (vmStruct , lockEA , 0 );
150
150
} else if ((count & OBJECT_HEADER_LOCK_LEARNING ) && (count & OBJECT_HEADER_LOCK_LEARNING_RECURSION_MASK )) {
151
151
/* Learning state case */
152
- I_32 casSuccess = FALSE;
152
+ BOOLEAN casSuccess = FALSE;
153
153
154
154
if (1 == J9_FLATLOCK_COUNT (lock )) {
155
155
/* if RC field is 1, this fully unlocks the object so a write barrier is needed */
You can’t perform that action at this time.
0 commit comments