< prev index next >

src/hotspot/share/gc/shared/collectedHeap.cpp

Print this page

        

@@ -481,10 +481,19 @@
       thread->tlab().resize();
     }
   }
 }
 
+Tickspan CollectedHeap::run_task(AbstractGangTask* task) {
+  Ticks start = Ticks::now();
+
+  // FIXME
+  Unimplemented();
+
+  return Ticks::now() - start;
+}
+
 void CollectedHeap::full_gc_dump(GCTimer* timer, bool before) {
   assert(timer != NULL, "timer is null");
   if ((HeapDumpBeforeFullGC && before) || (HeapDumpAfterFullGC && !before)) {
     GCTraceTime(Info, gc) tm(before ? "Heap Dump (before full gc)" : "Heap Dump (after full gc)", timer);
     HeapDumper::dump_heap();
< prev index next >