summaryrefslogtreecommitdiff
path: root/ACE/examples/Reactor/WFMO_Reactor/Talker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/Reactor/WFMO_Reactor/Talker.cpp')
-rw-r--r--ACE/examples/Reactor/WFMO_Reactor/Talker.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/ACE/examples/Reactor/WFMO_Reactor/Talker.cpp b/ACE/examples/Reactor/WFMO_Reactor/Talker.cpp
index df47a665049..44a93e339a7 100644
--- a/ACE/examples/Reactor/WFMO_Reactor/Talker.cpp
+++ b/ACE/examples/Reactor/WFMO_Reactor/Talker.cpp
@@ -151,7 +151,7 @@ class Peer_Handler : public MT_TASK, public ACE_Handler
{
public:
Peer_Handler (int argc, ACE_TCHAR *argv[]);
- ~Peer_Handler (void);
+ ~Peer_Handler ();
//FUZZ: disable check_for_lack_ACE_OS
/**
@@ -243,7 +243,7 @@ public:
virtual int close (u_long = 0);
/// Thread runs here as an active object.
- int svc (void);
+ int svc ();
int handle_close (ACE_HANDLE,
ACE_Reactor_Mask);
@@ -254,7 +254,7 @@ private:
static void handler (int signum);
/// Helper function to register with the Reactor for thread exit.
- void register_thread_exit_hook (void);
+ void register_thread_exit_hook ();
/// The STDIN thread has exited. This means the user hit ^C. We can
/// end the event loop.
@@ -297,7 +297,7 @@ Peer_Handler::Peer_Handler (int argc, ACE_TCHAR *argv[])
}
}
-Peer_Handler::~Peer_Handler (void)
+Peer_Handler::~Peer_Handler ()
{
}
@@ -471,7 +471,7 @@ STDIN_Handler::close (u_long)
// Thread runs here.
int
-STDIN_Handler::svc (void)
+STDIN_Handler::svc ()
{
this->register_thread_exit_hook ();
@@ -512,7 +512,7 @@ STDIN_Handler::svc (void)
// Register an exit hook with the reactor.
void
-STDIN_Handler::register_thread_exit_hook (void)
+STDIN_Handler::register_thread_exit_hook ()
{
// Get a real handle to our thread.
ACE_Thread_Manager::instance ()->thr_self (this->thr_handle_);