comparison src/share/vm/runtime/safepoint.cpp @ 1490:f03d0a26bf83

6888954: argument formatting for assert() and friends Reviewed-by: kvn, twisti, apetrusenko, never, dcubed
author jcoomes
date Thu, 22 Apr 2010 13:23:15 -0700
parents 0f6600cee529
children bfe29ec02863
comparison
equal deleted inserted replaced
1489:cff162798819 1490:f03d0a26bf83
592 592
593 Threads_lock->unlock(); 593 Threads_lock->unlock();
594 break; 594 break;
595 595
596 default: 596 default:
597 fatal1("Illegal threadstate encountered: %d", state); 597 fatal(err_msg("Illegal threadstate encountered: %d", state));
598 } 598 }
599 599
600 // Check for pending. async. exceptions or suspends - except if the 600 // Check for pending. async. exceptions or suspends - except if the
601 // thread was blocked inside the VM. has_special_runtime_exit_condition() 601 // thread was blocked inside the VM. has_special_runtime_exit_condition()
602 // is called last since it grabs a lock and we only want to do that when 602 // is called last since it grabs a lock and we only want to do that when