summaryrefslogtreecommitdiff
path: root/ACE/ace/Event_Base.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-12-09 12:39:57 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-12-09 12:39:57 +0100
commit6f91193f0b537d437645ae9e10823a519f547888 (patch)
tree224ad9643523a625196045f37ead1a4e73ddc1f9 /ACE/ace/Event_Base.h
parentfb7e13241cc5ebd590e32ec4343a75d53691cda6 (diff)
downloadATCD-6f91193f0b537d437645ae9e10823a519f547888.tar.gz
Removed redundant void
Diffstat (limited to 'ACE/ace/Event_Base.h')
-rw-r--r--ACE/ace/Event_Base.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/ACE/ace/Event_Base.h b/ACE/ace/Event_Base.h
index a158c5e67fe..aaef456772b 100644
--- a/ACE/ace/Event_Base.h
+++ b/ACE/ace/Event_Base.h
@@ -40,17 +40,17 @@ class ACE_Export ACE_Event_Base
{
public:
/// Implicitly destroy the event variable.
- virtual ~ACE_Event_Base (void);
+ virtual ~ACE_Event_Base ();
/**
* Explicitly destroy the event variable. Note that only one thread
* should call this method since it doesn't protect against race
* conditions.
*/
- int remove (void);
+ int remove ();
/// Underlying handle to event.
- ACE_event_t handle (void) const;
+ ACE_event_t handle () const;
/**
* Set the underlying handle to event. Note that this method assumes
@@ -70,7 +70,7 @@ public:
* sleep till the event becomes signaled
* event resets wait() completes.
*/
- int wait (void);
+ int wait ();
/// Same as wait() above, but this one can be timed
/// @a abstime is absolute time-of-day if if @a use_absolute_time
@@ -87,7 +87,7 @@ public:
* if thread(s) are waiting, wake up one waiting thread and
* reset event
*/
- int signal (void);
+ int signal ();
/**
* if MANUAL reset
@@ -97,13 +97,13 @@ public:
* wakeup one waiting thread (if present) and
* reset event
*/
- int pulse (void);
+ int pulse ();
/// Set to nonsignaled state.
- int reset (void);
+ int reset ();
/// Dump the state of an object.
- void dump (void) const;
+ void dump () const;
/// Declare the dynamic allocation hooks
ACE_ALLOC_HOOK_DECLARE;