< prev index next >

test/hotspot/gtest/gc/shared/test_oopStorage.cpp

Print this page

        

@@ -894,11 +894,11 @@
                                const OopStorage,
                                OopStorage>::type Storage;
 
 public:
   Task(const char* name, Storage* storage, VerifyState* vstate) :
-    AbstractGangTask(name, GCId::undefined()),
+    AbstractGangTask(name),
     _state(storage),
     _vstate(vstate)
   {}
 
   virtual void work(uint worker_id) {

@@ -913,11 +913,11 @@
 
 template<bool concurrent, bool is_const>
 class OopStorageTestParIteration::TaskUsingOopsDo : public AbstractGangTask {
 public:
   TaskUsingOopsDo(const char* name, OopStorage* storage, VerifyState* vstate) :
-    AbstractGangTask(name, GCId::undefined()),
+    AbstractGangTask(name),
     _state(storage),
     _vstate(vstate)
   {}
 
   virtual void work(uint worker_id) {
< prev index next >