summaryrefslogtreecommitdiff
path: root/ACE/ace/Timer_Queue_Adapters.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Timer_Queue_Adapters.h')
-rw-r--r--ACE/ace/Timer_Queue_Adapters.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/ACE/ace/Timer_Queue_Adapters.h b/ACE/ace/Timer_Queue_Adapters.h
index 94f41f1333c..0cd15c970c7 100644
--- a/ACE/ace/Timer_Queue_Adapters.h
+++ b/ACE/ace/Timer_Queue_Adapters.h
@@ -79,14 +79,14 @@ public:
/// Dispatch all timers with expiry time at or before the current time.
/// Returns the number of timers expired.
- int expire (void);
+ int expire ();
/// Return a reference to the underlying timer queue.
- TQ &timer_queue (void);
+ TQ &timer_queue ();
private:
/// Perform the logic to compute the new ualarm(2) setting.
- virtual int schedule_ualarm (void);
+ virtual int schedule_ualarm ();
/// Called back by @c SIGALRM handler.
virtual int handle_signal (int signum, siginfo_t *, ucontext_t *);
@@ -138,7 +138,7 @@ public:
TQ* timer_queue = 0);
/// Destructor.
- virtual ~ACE_Thread_Timer_Queue_Adapter (void);
+ virtual ~ACE_Thread_Timer_Queue_Adapter ();
/// Schedule the timer according to the semantics of the <TQ>; wakes
/// up the dispatching thread.
@@ -155,10 +155,10 @@ public:
virtual int svc ();
/// Inform the dispatching thread that it should terminate.
- virtual void deactivate (void);
+ virtual void deactivate ();
/// Access the locking mechanism, useful for iteration.
- ACE_SYNCH_RECURSIVE_MUTEX &mutex (void);
+ ACE_SYNCH_RECURSIVE_MUTEX &mutex ();
/// Set a user-specified timer queue.
int timer_queue (TQ *tq);
@@ -204,7 +204,7 @@ private:
# if defined (ACE_HAS_DEFERRED_TIMER_COMMANDS)
/// Dispatches all command objects enqueued in the most
/// recent event handler context.
- int dispatch_commands (void);
+ int dispatch_commands ();
/// Queue of commands for deferred execution.
ACE_Unbounded_Queue<ACE_Command_Base *> command_queue_;