From 6232a5efed0ea103e35aec73206e5e03a8b82e0c Mon Sep 17 00:00:00 2001 From: Jesse Wilson Date: Wed, 7 Apr 2010 15:07:54 -0700 Subject: Latest java.util.concurrent from the JSR 166 project. Code was downloaded from CVS on 2010-april-7 at 10:00pst http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/main/java/util/concurrent/ The new interfaces and ArrayDeque class are all from Harmony. --- luni-kernel/src/main/java/java/lang/Thread.java | 3 +++ 1 file changed, 3 insertions(+) (limited to 'luni-kernel/src') 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 -- cgit v1.1