diff options
Diffstat (limited to 'luni-kernel')
-rw-r--r-- | luni-kernel/src/main/java/java/lang/Thread.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/luni-kernel/src/main/java/java/lang/Thread.java b/luni-kernel/src/main/java/java/lang/Thread.java index 2dbba37..625d718 100644 --- a/luni-kernel/src/main/java/java/lang/Thread.java +++ b/luni-kernel/src/main/java/java/lang/Thread.java @@ -192,6 +192,9 @@ public class Thread implements Runnable { /** the park state of the thread */ private int parkState = ParkState.UNPARKED; + /** The synchronization object responsible for this thread parking. */ + private Object parkBlocker; + /** * Constructs a new {@code Thread} with no {@code Runnable} object and a * newly generated name. The new {@code Thread} will belong to the same |