< prev index next >

src/hotspot/share/gc/shared/gcVMOperations.hpp

Print this page

        

@@ -123,14 +123,14 @@
 
 class VM_GC_HeapInspection: public VM_GC_Operation {
  private:
   outputStream* _out;
   bool _full_gc;
-  size_t _parallel_thread_num;
+  uint _parallel_thread_num;
  public:
   VM_GC_HeapInspection(outputStream* out, bool request_full_gc,
-                       size_t parallel_thread_num = 1) :
+                       uint parallel_thread_num = 1) :
     VM_GC_Operation(0 /* total collections,      dummy, ignored */,
                     GCCause::_heap_inspection /* GC Cause */,
                     0 /* total full collections, dummy, ignored */,
                     request_full_gc), _out(out), _full_gc(request_full_gc),
                     _parallel_thread_num(parallel_thread_num) {}
< prev index next >