mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
8225788: Dead code in thread and safepoint
Reviewed-by: dholmes, dcubed, coleenp
This commit is contained in:
parent
6af89d6412
commit
57dbffe53f
9 changed files with 7 additions and 186 deletions
|
@ -51,13 +51,10 @@
|
|||
const char* VM_Operation::_names[VM_Operation::VMOp_Terminating] = \
|
||||
{ VM_OPS_DO(VM_OP_NAME_INITIALIZE) };
|
||||
|
||||
void VM_Operation::set_calling_thread(Thread* thread, ThreadPriority priority) {
|
||||
void VM_Operation::set_calling_thread(Thread* thread) {
|
||||
_calling_thread = thread;
|
||||
assert(MinPriority <= priority && priority <= MaxPriority, "sanity check");
|
||||
_priority = priority;
|
||||
}
|
||||
|
||||
|
||||
void VM_Operation::evaluate() {
|
||||
ResourceMark rm;
|
||||
LogTarget(Debug, vmoperation) lt;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue