diff options
Diffstat (limited to 'ace/Thread_Manager.h')
-rw-r--r-- | ace/Thread_Manager.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ace/Thread_Manager.h b/ace/Thread_Manager.h index d8c3f1d58a9..6f92fe8793f 100644 --- a/ace/Thread_Manager.h +++ b/ace/Thread_Manager.h @@ -449,19 +449,19 @@ protected: int apply_all (ACE_THR_MEMBER_FUNC, int = 0); // Apply <func> to all members of the table. - int join_thr (ACE_Thread_Descriptor *td); + int join_thr (ACE_Thread_Descriptor *td, int nouse = 0); // Join the thread described in <tda>. - int resume_thr (ACE_Thread_Descriptor *td); + int resume_thr (ACE_Thread_Descriptor *td, int nouse = 0); // Resume the thread described in <tda>. - int suspend_thr (ACE_Thread_Descriptor *td); + int suspend_thr (ACE_Thread_Descriptor *td, int nouse = 0); // Suspend the thread described in <tda>. int kill_thr (ACE_Thread_Descriptor *td, int signum); // Send signal <signum> to the thread described in <tda>. - int cancel_thr (ACE_Thread_Descriptor *td); + int cancel_thr (ACE_Thread_Descriptor *td, int nouse = 0); // Set the cancellation flag for the thread described in <tda>. ACE_Double_Linked_List<ACE_Thread_Descriptor> thr_list_; |