summaryrefslogtreecommitdiff
path: root/ACE/ace/Condition_Recursive_Thread_Mutex.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-12-29 13:40:46 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-12-29 13:40:46 +0100
commit1fd4e430fee005d73f91cf4e2ce9c2ac8721d9b6 (patch)
treec0fb3bf13b84224c13fd26517a792a937639af66 /ACE/ace/Condition_Recursive_Thread_Mutex.h
parent4ce761b1d69d50c0c3658b1139370b44b9c626c8 (diff)
parentc6a620cc7eabece507d13986c40c955d2f226f26 (diff)
downloadATCD-1fd4e430fee005d73f91cf4e2ce9c2ac8721d9b6.tar.gz
Merge branch 'master' into diop-portspan
Diffstat (limited to 'ACE/ace/Condition_Recursive_Thread_Mutex.h')
-rw-r--r--ACE/ace/Condition_Recursive_Thread_Mutex.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/ACE/ace/Condition_Recursive_Thread_Mutex.h b/ACE/ace/Condition_Recursive_Thread_Mutex.h
index f53ab12ebfd..816f08c7f2c 100644
--- a/ACE/ace/Condition_Recursive_Thread_Mutex.h
+++ b/ACE/ace/Condition_Recursive_Thread_Mutex.h
@@ -46,14 +46,14 @@ public:
const ACE_Condition_Attributes &attributes);
/// Implicitly destroy the condition variable.
- ~ACE_Condition (void);
+ ~ACE_Condition ();
/**
* Explicitly destroy the condition variable. Note that only one
* thread should call this method since it doesn't protect against
* race conditions.
*/
- int remove (void);
+ int remove ();
/**
* Block on condition, or until absolute time-of-day has passed. If
@@ -75,16 +75,16 @@ public:
const ACE_Time_Value *abstime = 0);
/// Signal one waiting thread.
- int signal (void);
+ int signal ();
/// Signal *all* waiting threads.
- int broadcast (void);
+ int broadcast ();
/// Returns a reference to the underlying mutex;
- ACE_Recursive_Thread_Mutex &mutex (void);
+ ACE_Recursive_Thread_Mutex &mutex ();
/// Dump the state of an object.
- void dump (void) const;
+ void dump () const;
private:
// = Prevent assignment and copying.