summaryrefslogtreecommitdiff
path: root/libjava/java/util/concurrent/ThreadPoolExecutor.h
diff options
context:
space:
mode:
authorTom Tromey <tromey@gcc.gnu.org>2007-03-05 14:29:47 +0000
committerTom Tromey <tromey@gcc.gnu.org>2007-03-05 14:29:47 +0000
commit3cf0c3c57ebaf07ec2c49a6b438956d03bac3f71 (patch)
treeb3bc5566835b32d35d32154afa344c52b010f061 /libjava/java/util/concurrent/ThreadPoolExecutor.h
parent39cd07dfc783fb94ef0ff99a4e2a5e70b8120d90 (diff)
Updating header files. Earlier change here seems to have been in error.
From-SVN: r122550
Diffstat (limited to 'libjava/java/util/concurrent/ThreadPoolExecutor.h')
-rw-r--r--libjava/java/util/concurrent/ThreadPoolExecutor.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/libjava/java/util/concurrent/ThreadPoolExecutor.h b/libjava/java/util/concurrent/ThreadPoolExecutor.h
index 00b9dde7c9f..b69b1f65599 100644
--- a/libjava/java/util/concurrent/ThreadPoolExecutor.h
+++ b/libjava/java/util/concurrent/ThreadPoolExecutor.h
@@ -71,20 +71,20 @@ private:
::java::util::concurrent::locks::ReentrantLock * mainLock;
::java::util::concurrent::locks::Condition * termination;
::java::util::HashSet * workers;
- volatile jlong keepAliveTime;
- volatile jboolean allowCoreThreadTimeOut__;
- volatile jint corePoolSize;
- volatile jint maximumPoolSize;
- volatile jint poolSize;
+ jlong volatile keepAliveTime;
+ jboolean volatile allowCoreThreadTimeOut__;
+ jint volatile corePoolSize;
+ jint volatile maximumPoolSize;
+ jint volatile poolSize;
public: // actually package-private
- volatile jint runState;
+ jint volatile runState;
static const jint RUNNING = 0;
static const jint SHUTDOWN = 1;
static const jint STOP = 2;
static const jint TERMINATED = 3;
private:
- volatile ::java::util::concurrent::RejectedExecutionHandler * handler;
- volatile ::java::util::concurrent::ThreadFactory * threadFactory;
+ ::java::util::concurrent::RejectedExecutionHandler * volatile handler;
+ ::java::util::concurrent::ThreadFactory * volatile threadFactory;
jint largestPoolSize;
jlong completedTaskCount;
static ::java::util::concurrent::RejectedExecutionHandler * defaultHandler;