mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +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
|
@ -146,7 +146,6 @@ class VM_Operation: public CHeapObj<mtInternal> {
|
|||
|
||||
private:
|
||||
Thread* _calling_thread;
|
||||
ThreadPriority _priority;
|
||||
long _timestamp;
|
||||
VM_Operation* _next;
|
||||
VM_Operation* _prev;
|
||||
|
@ -160,8 +159,7 @@ class VM_Operation: public CHeapObj<mtInternal> {
|
|||
|
||||
// VM operation support (used by VM thread)
|
||||
Thread* calling_thread() const { return _calling_thread; }
|
||||
ThreadPriority priority() { return _priority; }
|
||||
void set_calling_thread(Thread* thread, ThreadPriority priority);
|
||||
void set_calling_thread(Thread* thread);
|
||||
|
||||
long timestamp() const { return _timestamp; }
|
||||
void set_timestamp(long timestamp) { _timestamp = timestamp; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue