src/hotspot/share/runtime/thread.hpp
changeset 47765 b7c7428eaab9
parent 47699 068d316e905e
child 47881 0ce0ac68ace7
equal deleted inserted replaced
47764:029d5efaaa6c 47765:b7c7428eaab9
   242   // Point to the last handle mark
   242   // Point to the last handle mark
   243   HandleMark* _last_handle_mark;
   243   HandleMark* _last_handle_mark;
   244 
   244 
   245   // The parity of the last strong_roots iteration in which this thread was
   245   // The parity of the last strong_roots iteration in which this thread was
   246   // claimed as a task.
   246   // claimed as a task.
   247   jint _oops_do_parity;
   247   int _oops_do_parity;
   248 
   248 
   249  public:
   249  public:
   250   void set_last_handle_mark(HandleMark* mark)   { _last_handle_mark = mark; }
   250   void set_last_handle_mark(HandleMark* mark)   { _last_handle_mark = mark; }
   251   HandleMark* last_handle_mark() const          { return _last_handle_mark; }
   251   HandleMark* last_handle_mark() const          { return _last_handle_mark; }
   252  private:
   252  private: