< prev index next >

src/hotspot/share/runtime/handshake.hpp

Print this page

        

@@ -80,11 +80,11 @@
   void process_self_inner();
 
 public:
   HandshakeState();
 
-  void set_thread(JavaThread* thread) { _handshakee = thread; }
+  void set_handshakee(JavaThread* thread) { _handshakee = thread; }
 
   void set_operation(HandshakeOperation* op);
   bool has_operation() const { return _operation != NULL || _operation_direct != NULL; }
   bool has_specific_operation(bool is_direct) const {
     return is_direct ? _operation_direct != NULL : _operation != NULL;

@@ -98,11 +98,11 @@
   }
   bool try_process(HandshakeOperation* op);
 
 #ifdef ASSERT
   Thread* _active_handshaker;
-  Thread* get_active_handshaker() const { return _active_handshaker; }
+  Thread* active_handshaker() const { return _active_handshaker; }
 #endif
 
 };
 
 #endif // SHARE_RUNTIME_HANDSHAKE_HPP
< prev index next >