hotspot/src/share/vm/utilities/vmError.cpp
changeset 34305 e399e6b44631
parent 34139 0728fe06ccf8
child 35176 11a9d4022d9e
equal deleted inserted replaced
34234:e4a23d294f48 34305:e399e6b44631
  1347     MutexLocker ml(Heap_lock);
  1347     MutexLocker ml(Heap_lock);
  1348     VM_ReportJavaOutOfMemory op(message);
  1348     VM_ReportJavaOutOfMemory op(message);
  1349     VMThread::execute(&op);
  1349     VMThread::execute(&op);
  1350   }
  1350   }
  1351 }
  1351 }
       
  1352 
       
  1353 void VMError::show_message_box(char *buf, int buflen) {
       
  1354   bool yes;
       
  1355   do {
       
  1356     error_string(buf, buflen);
       
  1357     yes = os::start_debugging(buf,buflen);
       
  1358   } while (yes);
       
  1359 }