summaryrefslogtreecommitdiff
path: root/ACE/examples/Reactor
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/Reactor')
-rw-r--r--ACE/examples/Reactor/Misc/notification.cpp2
-rw-r--r--ACE/examples/Reactor/Misc/test_demuxing.cpp2
-rw-r--r--ACE/examples/Reactor/Misc/test_reactors.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/ACE/examples/Reactor/Misc/notification.cpp b/ACE/examples/Reactor/Misc/notification.cpp
index f9979a6a6b8..c5300a6b08b 100644
--- a/ACE/examples/Reactor/Misc/notification.cpp
+++ b/ACE/examples/Reactor/Misc/notification.cpp
@@ -56,7 +56,7 @@ public:
virtual int notify (ACE_Time_Value *tv = 0);
// Perform notifications.
- virtual int svc (void);
+ virtual int svc ();
// Handle I/O events in a separate threads.
private:
diff --git a/ACE/examples/Reactor/Misc/test_demuxing.cpp b/ACE/examples/Reactor/Misc/test_demuxing.cpp
index 1bac5832276..f320d5bc17f 100644
--- a/ACE/examples/Reactor/Misc/test_demuxing.cpp
+++ b/ACE/examples/Reactor/Misc/test_demuxing.cpp
@@ -268,7 +268,7 @@ public:
// Called back within the context of the <ACE_Reactor> Singleton to
// dequeue and process the message on the <ACE_Message_Queue>.
- virtual int svc (void);
+ virtual int svc ();
// Run the "event-loop" periodically putting messages to our
// internal <Message_Queue> that we inherit from <ACE_Task>.
diff --git a/ACE/examples/Reactor/Misc/test_reactors.cpp b/ACE/examples/Reactor/Misc/test_reactors.cpp
index 59ded76b40c..1d01416e1e9 100644
--- a/ACE/examples/Reactor/Misc/test_reactors.cpp
+++ b/ACE/examples/Reactor/Misc/test_reactors.cpp
@@ -26,7 +26,7 @@ public:
virtual int close (u_long flags = 0);
//FUZZ: enable check_for_lack_ACE_OS
- virtual int svc (void);
+ virtual int svc ();
virtual int handle_input (ACE_HANDLE handle);
virtual int handle_close (ACE_HANDLE fd,