comparison src/share/vm/runtime/thread.cpp @ 10186:b06ac540229e

8013132: Add a flag to turn off the output of the verbose verification code Reviewed-by: johnc, brutisso
author stefank
date Wed, 24 Apr 2013 20:13:37 +0200
parents 68fe50d4f1d5
children caac22686b17
comparison
equal deleted inserted replaced
10185:d50cc62e94ff 10186:b06ac540229e
3445 } 3445 }
3446 } 3446 }
3447 3447
3448 assert (Universe::is_fully_initialized(), "not initialized"); 3448 assert (Universe::is_fully_initialized(), "not initialized");
3449 if (VerifyDuringStartup) { 3449 if (VerifyDuringStartup) {
3450 VM_Verify verify_op(false /* silent */); // make sure we're starting with a clean slate 3450 // Make sure we're starting with a clean slate.
3451 VM_Verify verify_op;
3451 VMThread::execute(&verify_op); 3452 VMThread::execute(&verify_op);
3452 } 3453 }
3453 3454
3454 EXCEPTION_MARK; 3455 EXCEPTION_MARK;
3455 3456