8200122: Remove unused field Thread.threadQ

Reviewed-by: dholmes, mchung, plevart
This commit is contained in:
Martin Buchholz 2018-03-29 16:21:54 -07:00
parent dee3c23d5b
commit 200fb2b35b

View File

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