mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8200122: Remove unused field Thread.threadQ
Reviewed-by: dholmes, mchung, plevart
This commit is contained in:
parent
dee3c23d5b
commit
200fb2b35b
1 changed files with 5 additions and 6 deletions
|
@ -146,15 +146,14 @@ class Thread implements Runnable {
|
|||
}
|
||||
|
||||
private volatile String name;
|
||||
private int priority;
|
||||
private Thread threadQ;
|
||||
private long eetop;
|
||||
private int priority;
|
||||
|
||||
/* Whether or not the thread is a daemon thread. */
|
||||
private boolean daemon = false;
|
||||
private boolean daemon = false;
|
||||
|
||||
/* JVM state */
|
||||
private boolean stillborn = false;
|
||||
/* Fields reserved for exclusive use by the JVM */
|
||||
private boolean stillborn = false;
|
||||
private long eetop;
|
||||
|
||||
/* What will be run. */
|
||||
private Runnable target;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue