hotspot/src/share/vm/runtime/os.cpp
changeset 2154 72a9b7284ccf
parent 2105 347008ce7984
parent 2146 e1efdb8c4eca
child 2358 7c8346929fc6
--- a/hotspot/src/share/vm/runtime/os.cpp	Mon Mar 09 13:34:00 2009 -0700
+++ b/hotspot/src/share/vm/runtime/os.cpp	Thu Mar 12 18:16:36 2009 -0700
@@ -207,7 +207,8 @@
         VMThread::execute(&op1);
         Universe::print_heap_at_SIGBREAK();
         if (PrintClassHistogram) {
-          VM_GC_HeapInspection op1(gclog_or_tty, true /* force full GC before heap inspection */);
+          VM_GC_HeapInspection op1(gclog_or_tty, true /* force full GC before heap inspection */,
+                                   true /* need_prologue */);
           VMThread::execute(&op1);
         }
         if (JvmtiExport::should_post_data_dump()) {
@@ -943,7 +944,7 @@
   assert(StackRedPages > 0 && StackYellowPages > 0,"Sanity check");
   address sp = current_stack_pointer();
   // Check if we have StackShadowPages above the yellow zone.  This parameter
-  // is dependant on the depth of the maximum VM call stack possible from
+  // is dependent on the depth of the maximum VM call stack possible from
   // the handler for stack overflow.  'instanceof' in the stack overflow
   // handler or a println uses at least 8k stack of VM and native code
   // respectively.