< prev index next >

src/hotspot/share/gc/g1/g1ConcurrentRefineThread.hpp

Print this page
rev 47863 : imported patch 8190426-lazy-init-refinement-threads
rev 47865 : [mq]: 8190426-stefanj-review

@@ -48,21 +48,21 @@
   G1ConcurrentRefine* _cr;
 
   void wait_for_completed_buffers();
 
   void set_active(bool x) { _active = x; }
-  bool is_active();
   // Deactivate this thread.
   void deactivate();
 
   bool is_primary() { return (_worker_id == 0); }
 
   void run_service();
   void stop_service();
 public:
   G1ConcurrentRefineThread(G1ConcurrentRefine* cg1r, uint worker_id);
 
+  bool is_active();
   // Activate this thread.
   void activate();
 
   // Total virtual time so far.
   double vtime_accum() { return _vtime_accum; }
< prev index next >