Updating header files. Earlier change here seems to have been in error.
From-SVN: r122550
This commit is contained in:
parent
39cd07dfc7
commit
3cf0c3c57e
38 changed files with 66 additions and 66 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue