summaryrefslogtreecommitdiff
path: root/ace/Thread_Manager.h
diff options
context:
space:
mode:
authornw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-11-20 10:09:06 +0000
committernw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-11-20 10:09:06 +0000
commit667dbe83b80503c270fd75863f407c9956f4162c (patch)
treef45b732f98adfbb56480dc1570a24ae14a6ca86a /ace/Thread_Manager.h
parent3a6e8954cad86a725098622d506745d73121a830 (diff)
downloadATCD-667dbe83b80503c270fd75863f407c9956f4162c.tar.gz
Added a redundant parameter to internal thread functions.
This had caused great grief on NT Release version.
Diffstat (limited to 'ace/Thread_Manager.h')
-rw-r--r--ace/Thread_Manager.h8
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_;