summaryrefslogtreecommitdiff
path: root/ACE/ace/Condition_Thread_Mutex.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Condition_Thread_Mutex.h')
-rw-r--r--ACE/ace/Condition_Thread_Mutex.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/ACE/ace/Condition_Thread_Mutex.h b/ACE/ace/Condition_Thread_Mutex.h
index 898e683fab6..855adcba377 100644
--- a/ACE/ace/Condition_Thread_Mutex.h
+++ b/ACE/ace/Condition_Thread_Mutex.h
@@ -65,14 +65,14 @@ public:
void *arg = 0);
/// 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
@@ -83,7 +83,7 @@ public:
int wait (const ACE_Time_Value *abstime);
/// Block on condition.
- int wait (void);
+ int wait ();
/**
* Block on condition or until absolute time-of-day has passed. If
@@ -96,16 +96,16 @@ public:
int wait (ACE_Thread_Mutex &mutex, 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_Thread_Mutex &mutex (void);
+ ACE_Thread_Mutex &mutex ();
/// Dump the state of an object.
- void dump (void) const;
+ void dump () const;
/// Declare the dynamic allocation hooks.
ACE_ALLOC_HOOK_DECLARE;