| java.lang.Object java.lang.ThreadGroup
maxPriority | int maxPriority(Code) | | This group's max priority
|
parent | ThreadGroup parent(Code) | | Parent thread group of this thread group.
FIXME: this field must be private. It is changed to package-private
to be accessible from FT SecurityManager class. Both SecurityManager
and ThreadGroup are considered as non-Kernel by FT, but ThreadGroup
is Kernel now in DRL.
|
ThreadGroup | ThreadGroup()(Code) | | This constructor is used to create the system thread group
|
activeCount | public int activeCount()(Code) | | |
activeGroupCount | public int activeGroupCount()(Code) | | |
add | void add(Thread thread)(Code) | | Adds a thread to this thread group
|
allowThreadSuspension | public boolean allowThreadSuspension(boolean b)(Code) | | |
checkAccess | final public void checkAccess()(Code) | | |
checkGroup | void checkGroup()(Code) | | Checks that group is not destroyed
|
destroy | final public void destroy()(Code) | | |
enumerate | public int enumerate(Thread[] list, boolean recurse)(Code) | | |
getMaxPriority | final public int getMaxPriority()(Code) | | |
interrupt | final public void interrupt()(Code) | | |
isDaemon | final public boolean isDaemon()(Code) | | |
isDestroyed | public boolean isDestroyed()(Code) | | |
remove | void remove(Thread thread)(Code) | | Removes a thread from this thread group
|
resume | final public void resume()(Code) | | |
setDaemon | final public void setDaemon(boolean daemon)(Code) | | |
setMaxPriority | final public void setMaxPriority(int priority)(Code) | | |
stop | final public void stop()(Code) | | |
suspend | final public void suspend()(Code) | | |
|
|