#include <OS_NS_Thread.h>
Public Member Functions | |
ACE_Thread_ID (ACE_thread_t thr_id, ACE_hthread_t thr_handle) | |
ACE_Thread_ID (void) | |
Initialize the object using calls to ACE_OS::thr_self(). | |
ACE_Thread_ID (const ACE_Thread_ID &rhs) | |
Copy constructor. | |
ACE_thread_t | id (void) |
Get the thread id. | |
void | id (ACE_thread_t) |
Set the thread id. | |
ACE_hthread_t | handle (void) |
Get the thread handle. | |
void | handle (ACE_hthread_t) |
Set the thread handle. | |
void | to_string (char *thr_string) |
bool | operator== (const ACE_Thread_ID &) const |
Equality operator. | |
bool | operator!= (const ACE_Thread_ID &) const |
Inequality operator. | |
Private Attributes | |
ACE_thread_t | thread_id_ |
Identify the thread. | |
ACE_hthread_t | thread_handle_ |
Handle to the thread (typically used to "wait" on Win32). |
|
Initialize the object using the thread id and thread handle passed as parameters. |
|
Initialize the object using calls to ACE_OS::thr_self().
|
|
Copy constructor.
|
|
Set the thread handle.
|
|
Get the thread handle.
|
|
Set the thread id.
|
|
Get the thread id.
|
|
Inequality operator.
|
|
Equality operator.
|
|
|
|
Handle to the thread (typically used to "wait" on Win32).
|
|
Identify the thread.
|