diff -r 56bf71d64d51 -r e92153ed8bdc src/hotspot/share/services/attachListener.hpp --- a/src/hotspot/share/services/attachListener.hpp Mon Nov 25 12:22:13 2019 +0100 +++ b/src/hotspot/share/services/attachListener.hpp Mon Nov 25 12:30:24 2019 +0100 @@ -86,7 +86,7 @@ public: static void set_state(AttachListenerState new_state) { - Atomic::store(new_state, &_state); + Atomic::store(&_state, new_state); } static AttachListenerState get_state() { @@ -103,7 +103,7 @@ } static void set_initialized() { - Atomic::store(AL_INITIALIZED, &_state); + Atomic::store(&_state, AL_INITIALIZED); } // indicates if this VM supports attach-on-demand