summaryrefslogtreecommitdiff
path: root/ace/Thread_Manager.h
diff options
context:
space:
mode:
authornw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-11-21 06:17:53 +0000
committernw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-11-21 06:17:53 +0000
commitda0c764e47e5d772e650f8f6b1708a24d3550d9e (patch)
tree3ae939b989ca53856f3e95f8dec3780a75da2ddc /ace/Thread_Manager.h
parent26a2cb0601deecdf8c66f689ed3b4b6b5efe5428 (diff)
downloadATCD-da0c764e47e5d772e650f8f6b1708a24d3550d9e.tar.gz
Changed to allow ENOTSUP error in thr functions. Moved errno perserving codes.
Diffstat (limited to 'ace/Thread_Manager.h')
-rw-r--r--ace/Thread_Manager.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/ace/Thread_Manager.h b/ace/Thread_Manager.h
index 6f92fe8793f..40f30070334 100644
--- a/ace/Thread_Manager.h
+++ b/ace/Thread_Manager.h
@@ -443,25 +443,25 @@ protected:
int apply_task (ACE_Task_Base *task, ACE_THR_MEMBER_FUNC, int = 0);
// Apply <func> to all members of the table that match the <task>
- int apply_grp (int grp_id, ACE_THR_MEMBER_FUNC, int = 0);
+ int apply_grp (int grp_id, ACE_THR_MEMBER_FUNC func, int arg = 0);
// Apply <func> to all members of the table that match the <grp_id>.
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 nouse = 0);
+ int join_thr (ACE_Thread_Descriptor *td, int microsoft_sucks = 0);
// Join the thread described in <tda>.
- int resume_thr (ACE_Thread_Descriptor *td, int nouse = 0);
+ int resume_thr (ACE_Thread_Descriptor *td, int microsoft_sucks = 0);
// Resume the thread described in <tda>.
- int suspend_thr (ACE_Thread_Descriptor *td, int nouse = 0);
+ int suspend_thr (ACE_Thread_Descriptor *td, int microsoft_sucks = 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 nouse = 0);
+ int cancel_thr (ACE_Thread_Descriptor *td, int microsoft_sucks = 0);
// Set the cancellation flag for the thread described in <tda>.
ACE_Double_Linked_List<ACE_Thread_Descriptor> thr_list_;