#include <Base_Thread_Adapter.h>
Inheritance diagram for ACE_OS_Thread_Descriptor:
Public Member Functions | |
long | flags (void) const |
Get the thread creation flags. | |
Protected Member Functions | |
ACE_OS_Thread_Descriptor (long flags=0) | |
For use by ACE_Thread_Descriptor. | |
Protected Attributes | |
long | flags_ |
Definition at line 51 of file Base_Thread_Adapter.h.
|
For use by ACE_Thread_Descriptor.
Definition at line 14 of file Base_Thread_Adapter.inl.
00015 : flags_ (flags) 00016 { 00017 } |
|
Get the thread creation flags.
Definition at line 8 of file Base_Thread_Adapter.inl. Referenced by ACE_Thread_Adapter::invoke_i(), and ACE_OS::thr_exit().
00009 { 00010 return flags_; 00011 } |
|
Keeps track of whether this thread was created "detached" or not. If a thread is *not* created detached then if someone calls <ACE_Thread_Manager::wait>, we need to join with that thread (and close down the handle). Definition at line 67 of file Base_Thread_Adapter.h. Referenced by ACE_Thread_Manager::append_thr(), and ACE_Thread_Manager::wait(). |