8225788: Dead code in thread and safepoint

Reviewed-by: dholmes, dcubed, coleenp
This commit is contained in:
Robbin Ehn 2019-08-15 09:06:42 +02:00
parent 6af89d6412
commit 57dbffe53f
9 changed files with 7 additions and 186 deletions

View file

@ -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; }