#include <Thread_Manager.h>
For internal use only.
ACE_INLINE ACE_Thread_Descriptor_Base::ACE_Thread_Descriptor_Base | ( | void | ) |
ACE_INLINE ACE_Thread_Descriptor_Base::~ACE_Thread_Descriptor_Base | ( | void | ) |
ACE_INLINE bool ACE_Thread_Descriptor_Base::operator== | ( | const ACE_Thread_Descriptor_Base & | rhs | ) | const |
Equality operator.
ACE_INLINE bool ACE_Thread_Descriptor_Base::operator!= | ( | const ACE_Thread_Descriptor_Base & | rhs | ) | const |
Inequality operator.
ACE_INLINE int ACE_Thread_Descriptor_Base::grp_id | ( | void | ) | const |
Group ID.
ACE_INLINE ACE_UINT32 ACE_Thread_Descriptor_Base::state | ( | void | ) | const |
Current state of the thread.
ACE_INLINE ACE_Task_Base * ACE_Thread_Descriptor_Base::task | ( | void | ) | const |
Return the pointer to an ACE_Task_Base or NULL if there's no ACE_Task_Base associated with this thread.;
ACE_INLINE void ACE_Thread_Descriptor_Base::reset | ( | void | ) | [protected] |
Reset this base thread descriptor.
friend class ACE_Thread_Manager [friend] |
Reimplemented in ACE_Thread_Descriptor.
friend class ACE_Double_Linked_List< ACE_Thread_Descriptor_Base > [friend] |
friend class ACE_Double_Linked_List_Iterator_Base< ACE_Thread_Descriptor_Base > [friend] |
friend class ACE_Double_Linked_List_Iterator< ACE_Thread_Descriptor_Base > [friend] |
friend class ACE_Double_Linked_List< ACE_Thread_Descriptor > [friend] |
Reimplemented in ACE_Thread_Descriptor.
friend class ACE_Double_Linked_List_Iterator_Base< ACE_Thread_Descriptor > [friend] |
friend class ACE_Double_Linked_List_Iterator< ACE_Thread_Descriptor > [friend] |
Reimplemented in ACE_Thread_Descriptor.
ACE_thread_t ACE_Thread_Descriptor_Base::thr_id_ [protected] |
Unique thread ID.
ACE_hthread_t ACE_Thread_Descriptor_Base::thr_handle_ [protected] |
Unique handle to thread (used by Win32 and AIX).
int ACE_Thread_Descriptor_Base::grp_id_ [protected] |
Group ID.
ACE_UINT32 ACE_Thread_Descriptor_Base::thr_state_ [protected] |
Current state of the thread.
ACE_Task_Base* ACE_Thread_Descriptor_Base::task_ [protected] |
Pointer to an ACE_Task_Base or NULL if there's no ACE_Task_Base.
We need these pointers to maintain the double-linked list in a thread managers.