#include <Thread_Control.h>
Collaboration diagram for ACE_Thread_Control:
Public Methods | |
ACE_Thread_Control (ACE_Thread_Manager *tm = 0, int insert = 0) | |
Initialize the thread control object. If <insert> != 0, then register the thread with the Thread_Manager. | |
~ACE_Thread_Control (void) | |
Remove the thread from its associated <Thread_Manager> and exit the thread if <do_thr_exit> is enabled. | |
void* | exit (void *status, int do_thr_exit) |
Remove this thread from its associated <Thread_Manager> and exit the thread if <do_thr_exit> is enabled. | |
int | insert (ACE_Thread_Manager *tm, int insert = 0) |
Store the <Thread_Manager> and use it to register ourselves for correct shutdown. | |
ACE_Thread_Manager* | thr_mgr (void) |
Returns the current <Thread_Manager>. | |
ACE_Thread_Manager* | thr_mgr (ACE_Thread_Manager *) |
Atomically set a new <Thread_Manager> and return the old <Thread_Manager>. | |
void* | status (void *status) |
Set the exit status (and return existing status). | |
void* | status (void) |
Get the current exit status. | |
void | dump (void) const |
Dump the state of an object. | |
Public Attributes | |
ACE_ALLOC_HOOK_DECLARE | |
Declare the dynamic allocation hooks. | |
Private Attributes | |
ACE_Thread_Manager* | tm_ |
Pointer to the thread manager for this block of code. | |
void* | status_ |
Keeps track of the exit status for the thread. |
A uses this class to ensure that threads it spawns automatically register and unregister themselves with it. This class can be stored in thread-specific storage using the wrapper. When a thread exits the function deletes this object, thereby ensuring that it gets removed from its associated .
|
Initialize the thread control object. If <insert> != 0, then register the thread with the Thread_Manager.
|
|
Remove the thread from its associated <Thread_Manager> and exit the thread if <do_thr_exit> is enabled.
|
|
Dump the state of an object.
|
|
Remove this thread from its associated <Thread_Manager> and exit the thread if <do_thr_exit> is enabled.
|
|
Store the <Thread_Manager> and use it to register ourselves for correct shutdown.
|
|
Get the current exit status.
|
|
Set the exit status (and return existing status).
|
|
Atomically set a new <Thread_Manager> and return the old <Thread_Manager>.
|
|
Returns the current <Thread_Manager>.
|
|
Declare the dynamic allocation hooks.
|
|
Keeps track of the exit status for the thread.
|
|
Pointer to the thread manager for this block of code.
|