summaryrefslogtreecommitdiffstats
path: root/luni-kernel/src
diff options
context:
space:
mode:
authorJesse Wilson <jessewilson@google.com>2010-04-07 15:07:54 -0700
committerJesse Wilson <jessewilson@google.com>2010-04-09 12:15:23 -0700
commit6232a5efed0ea103e35aec73206e5e03a8b82e0c (patch)
tree1063168102abba77194c174b27f997f8508b104f /luni-kernel/src
parent5ce230557f6d172654868465c6ef9f99564701a8 (diff)
downloadlibcore-6232a5efed0ea103e35aec73206e5e03a8b82e0c.zip
libcore-6232a5efed0ea103e35aec73206e5e03a8b82e0c.tar.gz
libcore-6232a5efed0ea103e35aec73206e5e03a8b82e0c.tar.bz2
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.
Diffstat (limited to 'luni-kernel/src')
-rw-r--r--luni-kernel/src/main/java/java/lang/Thread.java3
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