comparison src/share/vm/runtime/thread.cpp @ 9088:89e4d67fdd2a

Merge
author Gilles Duboscq <duboscq@ssw.jku.at>
date Fri, 12 Apr 2013 14:05:42 +0200
parents b9a918201d47 68fe50d4f1d5
children 147162b27799
comparison
equal deleted inserted replaced
9037:b008f40b67d0 9088:89e4d67fdd2a
3447 } 3447 }
3448 } 3448 }
3449 } 3449 }
3450 3450
3451 assert (Universe::is_fully_initialized(), "not initialized"); 3451 assert (Universe::is_fully_initialized(), "not initialized");
3452 if (VerifyBeforeGC && VerifyGCStartAt == 0) { 3452 if (VerifyDuringStartup) {
3453 Universe::heap()->prepare_for_verify(); 3453 VM_Verify verify_op(false /* silent */); // make sure we're starting with a clean slate
3454 Universe::verify(); // make sure we're starting with a clean slate 3454 VMThread::execute(&verify_op);
3455 } 3455 }
3456 3456
3457 EXCEPTION_MARK; 3457 EXCEPTION_MARK;
3458 3458
3459 // At this point, the Universe is initialized, but we have not executed 3459 // At this point, the Universe is initialized, but we have not executed