Skip to content

Commit 6c4e2e7

Browse files
committedJan 23, 2020
8237753: 32-bit builds are broken after JDK-823059
Changed _pending_threads to be 32 bits instead of 64 Reviewed-by: dholmes
1 parent 78ff45e commit 6c4e2e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/hotspot/share/runtime/handshake.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141
class HandshakeOperation: public StackObj {
4242
HandshakeClosure* _handshake_cl;
43-
int64_t _pending_threads;
43+
int32_t _pending_threads;
4444
bool _executed;
4545
bool _is_direct;
4646
public:

0 commit comments

Comments
 (0)
Please sign in to comment.