src/hotspot/share/runtime/vm_operations.hpp
changeset 51334 cc2c79d22508
parent 50966 f939a67fea30
child 52874 c45a5b46461b
--- a/src/hotspot/share/runtime/vm_operations.hpp	Wed Aug 08 15:31:06 2018 +0200
+++ b/src/hotspot/share/runtime/vm_operations.hpp	Wed Aug 08 15:31:07 2018 +0200
@@ -414,8 +414,8 @@
                               // which protects the JavaThreads in _deadlocks.
 
  public:
-  VM_FindDeadlocks(bool concurrent_locks) :  _concurrent_locks(concurrent_locks), _out(NULL), _deadlocks(NULL), _setter() {};
-  VM_FindDeadlocks(outputStream* st) : _concurrent_locks(true), _out(st), _deadlocks(NULL) {};
+  VM_FindDeadlocks(bool concurrent_locks) :  _concurrent_locks(concurrent_locks), _deadlocks(NULL), _out(NULL), _setter() {};
+  VM_FindDeadlocks(outputStream* st) : _concurrent_locks(true), _deadlocks(NULL), _out(st) {};
   ~VM_FindDeadlocks();
 
   DeadlockCycle* result()      { return _deadlocks; };