#include <Thread_Manager.h>
Inheritance diagram for ACE_Thread_Descriptor_Base:
For internal use only.
Definition at line 165 of file Thread_Manager.h.
|
Definition at line 63 of file Thread_Manager.inl.
00064 : ACE_OS_Thread_Descriptor (), 00065 thr_id_ (ACE_OS::NULL_thread), 00066 thr_handle_ (ACE_OS::NULL_hthread), 00067 grp_id_ (0), 00068 thr_state_ (ACE_Thread_Manager::ACE_THR_IDLE), 00069 task_ (0), 00070 next_ (0), 00071 prev_ (0) 00072 { 00073 } |
|
Definition at line 76 of file Thread_Manager.inl.
00077 { 00078 } |
|
Group ID.
Definition at line 105 of file Thread_Manager.inl. References ACE_TRACE.
|
|
Inequality operator.
Definition at line 90 of file Thread_Manager.inl.
00091 { 00092 return !(*this == rhs); 00093 } |
|
Equality operator.
Definition at line 81 of file Thread_Manager.inl. References ACE_OS::thr_cmp(), ACE_OS::thr_equal(), thr_handle_, and thr_id_.
00083 { 00084 return 00085 ACE_OS::thr_cmp (this->thr_handle_, rhs.thr_handle_) 00086 && ACE_OS::thr_equal (this->thr_id_, rhs.thr_id_); 00087 } |
|
Reset this base thread descriptor.
Definition at line 121 of file Thread_Manager.inl. References ACE_TRACE, task_, thr_handle_, thr_id_, and thr_state_. Referenced by ACE_Thread_Descriptor::reset().
00122 { 00123 ACE_TRACE ("ACE_Thread_Descriptor_Base::reset"); 00124 this->thr_id_ = ACE_OS::NULL_thread; 00125 this->thr_handle_ = ACE_OS::NULL_hthread; 00126 this->grp_id_ = 0; 00127 this->thr_state_ = ACE_Thread_Manager::ACE_THR_IDLE; 00128 this->task_ = 0; 00129 this->flags_ = 0; 00130 } |
|
Current state of the thread.
Definition at line 113 of file Thread_Manager.inl. References ACE_TRACE, and thr_state_. Referenced by ACE_Log_Msg::dump().
00114 { 00115 ACE_TRACE ("ACE_Thread_Descriptor_Base::state"); 00116 return thr_state_; 00117 } |
|
Return the pointer to an ACE_Task_Base or NULL if there's no ACE_Task_Base associated with this thread.; Definition at line 96 of file Thread_Manager.inl. References ACE_TRACE, and task_. Referenced by ACE_Thread_Manager::task().
|
|
Reimplemented in ACE_Thread_Descriptor. Definition at line 172 of file Thread_Manager.h. |
|
Definition at line 169 of file Thread_Manager.h. |
|
Reimplemented in ACE_Thread_Descriptor. Definition at line 174 of file Thread_Manager.h. |
|
Definition at line 171 of file Thread_Manager.h. |
|
Definition at line 173 of file Thread_Manager.h. |
|
Definition at line 170 of file Thread_Manager.h. |
|
Reimplemented in ACE_Thread_Descriptor. Definition at line 168 of file Thread_Manager.h. |
|
Group ID.
Definition at line 208 of file Thread_Manager.h. Referenced by ACE_Thread_Manager::append_thr(). |
|
We need these pointers to maintain the double-linked list in a thread managers. Definition at line 219 of file Thread_Manager.h. |
|
Definition at line 220 of file Thread_Manager.h. |
|
Pointer to an ACE_Task_Base or NULL if there's no ACE_Task_Base. Definition at line 215 of file Thread_Manager.h. Referenced by ACE_Thread_Manager::append_thr(), reset(), and task(). |
|
Unique handle to thread (used by Win32 and AIX).
Definition at line 205 of file Thread_Manager.h. Referenced by ACE_Thread_Manager::append_thr(), ACE_Thread_Manager::join(), ACE_Thread_Manager::join_thr(), operator==(), ACE_Thread_Manager::remove_thr(), reset(), ACE_Thread_Manager::resume_thr(), ACE_Thread_Manager::suspend_thr(), ACE_Thread_Manager::wait(), ACE_Thread_Manager::wait_grp(), and ACE_Thread_Manager::wait_task(). |
|
Unique thread ID.
Definition at line 202 of file Thread_Manager.h. Referenced by ACE_Thread_Manager::append_thr(), ACE_Thread_Manager::cancel_thr(), ACE_Thread_Manager::kill_thr(), operator==(), and reset(). |
|
Current state of the thread.
Definition at line 211 of file Thread_Manager.h. Referenced by ACE_Thread_Manager::append_thr(), ACE_Thread_Manager::cancel_thr(), ACE_Thread_Manager::check_state(), reset(), ACE_Thread_Manager::resume_thr(), state(), ACE_Thread_Manager::suspend_thr(), and ACE_Thread_Manager::thr_state(). |