summaryrefslogtreecommitdiff
path: root/ACE/examples
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples')
-rw-r--r--ACE/examples/APG/Proactor/HA_Proactive_Status.h2
-rw-r--r--ACE/examples/APG/Streams/CommandTask.h2
-rw-r--r--ACE/examples/APG/Svc_Config/HA_Status_Dynamic.h2
-rw-r--r--ACE/examples/APG/Svc_Config/HA_Status_Static.h2
-rw-r--r--ACE/examples/APG/ThreadPools/LF_ThreadPool.cpp2
-rw-r--r--ACE/examples/APG/Threads/Condition_Variables.cpp2
-rw-r--r--ACE/examples/ASX/CCM_App/CCM_App.cpp2
-rw-r--r--ACE/examples/ASX/Event_Server/Event_Server/Consumer_Router.h2
-rw-r--r--ACE/examples/ASX/Event_Server/Event_Server/Event_Analyzer.h2
-rw-r--r--ACE/examples/ASX/Event_Server/Event_Server/Supplier_Router.h2
-rw-r--r--ACE/examples/ASX/Message_Queue/buffer_stream.cpp4
-rw-r--r--ACE/examples/ASX/UPIPE_Event_Server/Consumer_Router.h2
-rw-r--r--ACE/examples/ASX/UPIPE_Event_Server/Event_Analyzer.h2
-rw-r--r--ACE/examples/ASX/UPIPE_Event_Server/Peer_Router.h4
-rw-r--r--ACE/examples/ASX/UPIPE_Event_Server/Supplier_Router.h2
-rw-r--r--ACE/examples/Bounded_Packet_Relay/BPR_Drivers.h2
-rw-r--r--ACE/examples/Bounded_Packet_Relay/Thread_Bounded_Packet_Relay.h2
-rw-r--r--ACE/examples/C++NPv2/AIO_Client_Logging_Daemon.cpp2
-rw-r--r--ACE/examples/C++NPv2/TP_Logging_Server.h2
-rw-r--r--ACE/examples/Connection/blocking/SPIPE-acceptor.h4
-rw-r--r--ACE/examples/Connection/blocking/SPIPE-connector.h4
-rw-r--r--ACE/examples/Connection/misc/Connection_Handler.h2
-rw-r--r--ACE/examples/Connection/non_blocking/CPP-acceptor.h4
-rw-r--r--ACE/examples/Connection/non_blocking/CPP-connector.h4
-rw-r--r--ACE/examples/IPC_SAP/SOCK_SAP/CPP-inserver-fancy.cpp2
-rw-r--r--ACE/examples/IPC_SAP/SSL_SAP/SSL-server-fancy.cpp2
-rw-r--r--ACE/examples/NT_Service/ntsvc.h2
-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
-rw-r--r--ACE/examples/Service_Configurator/IPC-tests/server/Handle_Broadcast.h2
-rw-r--r--ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_CODgram.h2
-rw-r--r--ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_Dgram.h2
-rw-r--r--ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_FIFO.h2
-rw-r--r--ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_Pipe.h2
-rw-r--r--ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_SPIPE.h2
-rw-r--r--ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_Stream.h2
-rw-r--r--ACE/examples/Service_Configurator/IPC-tests/server/Handle_R_Dgram.h2
-rw-r--r--ACE/examples/Service_Configurator/IPC-tests/server/Handle_R_Stream.h2
-rw-r--r--ACE/examples/Service_Configurator/IPC-tests/server/Handle_Thr_Stream.h4
-rw-r--r--ACE/examples/Service_Configurator/IPC-tests/server/Handle_Timeout.h2
-rw-r--r--ACE/examples/Threads/barrier2.cpp2
-rw-r--r--ACE/examples/Threads/future1.cpp2
-rw-r--r--ACE/examples/Threads/future2.cpp2
-rw-r--r--ACE/examples/Threads/task_four.cpp4
-rw-r--r--ACE/examples/Threads/task_one.cpp2
-rw-r--r--ACE/examples/Threads/task_three.cpp2
-rw-r--r--ACE/examples/Threads/task_two.cpp2
-rw-r--r--ACE/examples/Threads/thread_pool.cpp2
-rw-r--r--ACE/examples/Threads/token.cpp2
-rw-r--r--ACE/examples/Threads/tss1.cpp2
-rw-r--r--ACE/examples/Threads/wfmo.cpp2
-rw-r--r--ACE/examples/Timer_Queue/Thread_Timer_Queue_Custom_Handler_Test.h2
-rw-r--r--ACE/examples/Timer_Queue/Thread_Timer_Queue_Test.h2
54 files changed, 62 insertions, 62 deletions
diff --git a/ACE/examples/APG/Proactor/HA_Proactive_Status.h b/ACE/examples/APG/Proactor/HA_Proactive_Status.h
index efc1c824f84..d09848f3e06 100644
--- a/ACE/examples/APG/Proactor/HA_Proactive_Status.h
+++ b/ACE/examples/APG/Proactor/HA_Proactive_Status.h
@@ -79,7 +79,7 @@ public:
virtual int init (int argc, ACE_TCHAR *argv[]);
// Terminates object when dynamic unlinking occurs.
- virtual int fini (void);
+ virtual int fini ();
};
#endif /* __HA_PROACTIVE_STATUS_H */
diff --git a/ACE/examples/APG/Streams/CommandTask.h b/ACE/examples/APG/Streams/CommandTask.h
index 3524a16291a..bc4579ba793 100644
--- a/ACE/examples/APG/Streams/CommandTask.h
+++ b/ACE/examples/APG/Streams/CommandTask.h
@@ -20,7 +20,7 @@ public:
int put (ACE_Message_Block *message,
ACE_Time_Value *timeout);
- virtual int svc (void);
+ virtual int svc ();
virtual int close (u_long flags);
diff --git a/ACE/examples/APG/Svc_Config/HA_Status_Dynamic.h b/ACE/examples/APG/Svc_Config/HA_Status_Dynamic.h
index c6c302021f6..4b5cc137060 100644
--- a/ACE/examples/APG/Svc_Config/HA_Status_Dynamic.h
+++ b/ACE/examples/APG/Svc_Config/HA_Status_Dynamic.h
@@ -27,7 +27,7 @@ class HASTATUS_Export HA_Status : public ACE_Service_Object
public:
virtual int init (int argc, ACE_TCHAR *argv[]);
- virtual int fini (void);
+ virtual int fini ();
virtual int info (ACE_TCHAR **str, size_t len) const;
diff --git a/ACE/examples/APG/Svc_Config/HA_Status_Static.h b/ACE/examples/APG/Svc_Config/HA_Status_Static.h
index eb16f9f52e1..ed4e175a46e 100644
--- a/ACE/examples/APG/Svc_Config/HA_Status_Static.h
+++ b/ACE/examples/APG/Svc_Config/HA_Status_Static.h
@@ -25,7 +25,7 @@ class HA_Status : public ACE_Service_Object
{
public:
virtual int init (int argc, ACE_TCHAR *argv[]);
- virtual int fini (void);
+ virtual int fini ();
virtual int info (ACE_TCHAR **str, size_t len) const;
private:
diff --git a/ACE/examples/APG/ThreadPools/LF_ThreadPool.cpp b/ACE/examples/APG/ThreadPools/LF_ThreadPool.cpp
index 79290125af0..8f0e4a82145 100644
--- a/ACE/examples/APG/ThreadPools/LF_ThreadPool.cpp
+++ b/ACE/examples/APG/ThreadPools/LF_ThreadPool.cpp
@@ -49,7 +49,7 @@ public:
ACE_TRACE ("LF_ThreadPool::TP");
}
- virtual int svc (void);
+ virtual int svc ();
void shut_down (void)
{
diff --git a/ACE/examples/APG/Threads/Condition_Variables.cpp b/ACE/examples/APG/Threads/Condition_Variables.cpp
index 0275b96b88c..659cd018d86 100644
--- a/ACE/examples/APG/Threads/Condition_Variables.cpp
+++ b/ACE/examples/APG/Threads/Condition_Variables.cpp
@@ -42,7 +42,7 @@ public:
: rep_(rep), waitCond_(wait), mutex_(mutex)
{ }
- virtual int svc (void);
+ virtual int svc ();
private:
HA_Device_Repository &rep_;
diff --git a/ACE/examples/ASX/CCM_App/CCM_App.cpp b/ACE/examples/ASX/CCM_App/CCM_App.cpp
index 76b22e68132..696fa0aa19e 100644
--- a/ACE/examples/ASX/CCM_App/CCM_App.cpp
+++ b/ACE/examples/ASX/CCM_App/CCM_App.cpp
@@ -20,7 +20,7 @@ public:
//FUZZ: enable check_for_lack_ACE_OS
virtual int init (int, ACE_TCHAR *[]);
- virtual int fini (void);
+ virtual int fini ();
virtual int suspend (void);
virtual int resume (void);
};
diff --git a/ACE/examples/ASX/Event_Server/Event_Server/Consumer_Router.h b/ACE/examples/ASX/Event_Server/Event_Server/Consumer_Router.h
index e616c18dce0..a8724b9065e 100644
--- a/ACE/examples/ASX/Event_Server/Event_Server/Consumer_Router.h
+++ b/ACE/examples/ASX/Event_Server/Event_Server/Consumer_Router.h
@@ -57,7 +57,7 @@ protected:
// <Consumer_Router>. The <Consumer_Router> queues up this message,
// which is then processed in the <svc> method in a separate thread.
- virtual int svc (void);
+ virtual int svc ();
// Runs in a separate thread to dequeue messages and pass them up
// the stream.
diff --git a/ACE/examples/ASX/Event_Server/Event_Server/Event_Analyzer.h b/ACE/examples/ASX/Event_Server/Event_Server/Event_Analyzer.h
index d12a79c0a9c..2e3a09b9d0c 100644
--- a/ACE/examples/ASX/Event_Server/Event_Server/Event_Analyzer.h
+++ b/ACE/examples/ASX/Event_Server/Event_Server/Event_Analyzer.h
@@ -30,7 +30,7 @@ public:
// Dynamic linking hooks (not used).
virtual int init (int argc, ACE_TCHAR *argv[]);
- virtual int fini (void);
+ virtual int fini ();
virtual int info (ACE_TCHAR **info_string,
size_t length) const;
private:
diff --git a/ACE/examples/ASX/Event_Server/Event_Server/Supplier_Router.h b/ACE/examples/ASX/Event_Server/Event_Server/Supplier_Router.h
index 4d1723fcea6..44e9e8a85bc 100644
--- a/ACE/examples/ASX/Event_Server/Event_Server/Supplier_Router.h
+++ b/ACE/examples/ASX/Event_Server/Event_Server/Supplier_Router.h
@@ -59,7 +59,7 @@ protected:
// The Router queues up this message, which is then processed in the
// <svc> method in a separate thread.
- virtual int svc (void);
+ virtual int svc ();
// Runs in a separate thread to dequeue messages and pass them up
// the stream.
diff --git a/ACE/examples/ASX/Message_Queue/buffer_stream.cpp b/ACE/examples/ASX/Message_Queue/buffer_stream.cpp
index 82dd3e2ad18..95408d3897d 100644
--- a/ACE/examples/ASX/Message_Queue/buffer_stream.cpp
+++ b/ACE/examples/ASX/Message_Queue/buffer_stream.cpp
@@ -47,7 +47,7 @@ public:
Producer (void) {}
// Read data from stdin and pass to consumer.
- virtual int svc (void);
+ virtual int svc ();
};
class Consumer : public Common_Task
@@ -62,7 +62,7 @@ public:
// Enqueue the message on the ACE_Message_Queue for subsequent
// handling in the svc() method.
- virtual int svc (void);
+ virtual int svc ();
// Receive message from producer and print to stdout.
private:
diff --git a/ACE/examples/ASX/UPIPE_Event_Server/Consumer_Router.h b/ACE/examples/ASX/UPIPE_Event_Server/Consumer_Router.h
index 8e443e5c679..d8767e07d25 100644
--- a/ACE/examples/ASX/UPIPE_Event_Server/Consumer_Router.h
+++ b/ACE/examples/ASX/UPIPE_Event_Server/Consumer_Router.h
@@ -42,7 +42,7 @@ protected:
virtual int open (void *a = 0);
virtual int close (u_long flags = 0);
virtual int put (ACE_Message_Block *msg, ACE_Time_Value * = 0);
- virtual int svc (void);
+ virtual int svc ();
// Dynamic linking hooks.
virtual int info (ACE_TCHAR **info_string, size_t length) const;
diff --git a/ACE/examples/ASX/UPIPE_Event_Server/Event_Analyzer.h b/ACE/examples/ASX/UPIPE_Event_Server/Event_Analyzer.h
index aa77572197a..ba382d40fd9 100644
--- a/ACE/examples/ASX/UPIPE_Event_Server/Event_Analyzer.h
+++ b/ACE/examples/ASX/UPIPE_Event_Server/Event_Analyzer.h
@@ -24,7 +24,7 @@ public:
// Dynamic linking hooks.
virtual int init (int argc, ACE_TCHAR *argv[]);
- virtual int fini (void);
+ virtual int fini ();
virtual int info (ACE_TCHAR **info_string, size_t length) const;
private:
diff --git a/ACE/examples/ASX/UPIPE_Event_Server/Peer_Router.h b/ACE/examples/ASX/UPIPE_Event_Server/Peer_Router.h
index eaa725ca172..d8ebe216bbb 100644
--- a/ACE/examples/ASX/UPIPE_Event_Server/Peer_Router.h
+++ b/ACE/examples/ASX/UPIPE_Event_Server/Peer_Router.h
@@ -60,7 +60,7 @@ protected:
private:
// Don't need this method here...
- virtual int svc (void);
+ virtual int svc ();
};
// This abstract base class provides mechanisms for routing messages
@@ -96,7 +96,7 @@ protected:
// Dynamic linking initialization hooks inherited from ACE_Task.
virtual int init (int argc, ACE_TCHAR *argv[]);
- virtual int fini (void);
+ virtual int fini ();
// Factory for accepting new PEER_HANDLERs.
Acceptor_Factory<PEER_HANDLER, PEER_KEY> *acceptor_;
diff --git a/ACE/examples/ASX/UPIPE_Event_Server/Supplier_Router.h b/ACE/examples/ASX/UPIPE_Event_Server/Supplier_Router.h
index 97a273f6999..f14ee7098b3 100644
--- a/ACE/examples/ASX/UPIPE_Event_Server/Supplier_Router.h
+++ b/ACE/examples/ASX/UPIPE_Event_Server/Supplier_Router.h
@@ -45,7 +45,7 @@ protected:
virtual int open (void *a = 0);
virtual int close (u_long flags = 0);
virtual int put (ACE_Message_Block *msg, ACE_Time_Value * = 0);
- virtual int svc (void);
+ virtual int svc ();
// Dynamic linking hooks inherited from Peer_Router.
virtual int info (ACE_TCHAR **info_string, size_t length) const;
diff --git a/ACE/examples/Bounded_Packet_Relay/BPR_Drivers.h b/ACE/examples/Bounded_Packet_Relay/BPR_Drivers.h
index 890f2877eec..33d96964c37 100644
--- a/ACE/examples/Bounded_Packet_Relay/BPR_Drivers.h
+++ b/ACE/examples/Bounded_Packet_Relay/BPR_Drivers.h
@@ -207,7 +207,7 @@ public:
int request_stop (void);
/// This method runs the input device loop in the new thread.
- virtual int svc (void);
+ virtual int svc ();
/// Provides an abstract interface to allow modifying device
/// settings.
diff --git a/ACE/examples/Bounded_Packet_Relay/Thread_Bounded_Packet_Relay.h b/ACE/examples/Bounded_Packet_Relay/Thread_Bounded_Packet_Relay.h
index 7fcbbadba7b..727393c5514 100644
--- a/ACE/examples/Bounded_Packet_Relay/Thread_Bounded_Packet_Relay.h
+++ b/ACE/examples/Bounded_Packet_Relay/Thread_Bounded_Packet_Relay.h
@@ -177,7 +177,7 @@ public:
virtual ~User_Input_Task (void);
/// This method runs the event loop in the new thread.
- virtual int svc (void);
+ virtual int svc ();
// = Some helper methods.
diff --git a/ACE/examples/C++NPv2/AIO_Client_Logging_Daemon.cpp b/ACE/examples/C++NPv2/AIO_Client_Logging_Daemon.cpp
index 47de5c935c6..51db63ad062 100644
--- a/ACE/examples/C++NPv2/AIO_Client_Logging_Daemon.cpp
+++ b/ACE/examples/C++NPv2/AIO_Client_Logging_Daemon.cpp
@@ -63,7 +63,7 @@ public:
// Service Configurator hook methods.
virtual int init (int argc, ACE_TCHAR *argv[]);
virtual int fini ();
- virtual int svc (void);
+ virtual int svc ();
};
/******************************************************/
diff --git a/ACE/examples/C++NPv2/TP_Logging_Server.h b/ACE/examples/C++NPv2/TP_Logging_Server.h
index 0f0ca357b76..fe2c20f825e 100644
--- a/ACE/examples/C++NPv2/TP_Logging_Server.h
+++ b/ACE/examples/C++NPv2/TP_Logging_Server.h
@@ -26,7 +26,7 @@ public:
ACE_Time_Value *timeout = 0)
{ return putq (mblk, timeout); }
- virtual int svc (void);
+ virtual int svc ();
};
typedef ACE_Unmanaged_Singleton<TP_Logging_Task, ACE_Null_Mutex>
diff --git a/ACE/examples/Connection/blocking/SPIPE-acceptor.h b/ACE/examples/Connection/blocking/SPIPE-acceptor.h
index 6c202b04afd..539fe2dc525 100644
--- a/ACE/examples/Connection/blocking/SPIPE-acceptor.h
+++ b/ACE/examples/Connection/blocking/SPIPE-acceptor.h
@@ -48,10 +48,10 @@ public:
virtual int init (int argc, ACE_TCHAR *argv[]);
// Initialize the network server.
- virtual int fini (void);
+ virtual int fini ();
// Close down the server.
- virtual int svc (void);
+ virtual int svc ();
// Run the interative service.
private:
diff --git a/ACE/examples/Connection/blocking/SPIPE-connector.h b/ACE/examples/Connection/blocking/SPIPE-connector.h
index 1901f32592a..029fc11217a 100644
--- a/ACE/examples/Connection/blocking/SPIPE-connector.h
+++ b/ACE/examples/Connection/blocking/SPIPE-connector.h
@@ -53,10 +53,10 @@ public:
virtual int init (int argc, ACE_TCHAR *argv[]);
// Initialize the IPC client.
- virtual int fini (void);
+ virtual int fini ();
// Destroy the IPC client.
- virtual int svc (void);
+ virtual int svc ();
// Run the svc.
virtual int handle_close (ACE_HANDLE, ACE_Reactor_Mask);
diff --git a/ACE/examples/Connection/misc/Connection_Handler.h b/ACE/examples/Connection/misc/Connection_Handler.h
index 47a6b8ed670..8ce52f9e472 100644
--- a/ACE/examples/Connection/misc/Connection_Handler.h
+++ b/ACE/examples/Connection/misc/Connection_Handler.h
@@ -15,7 +15,7 @@ public:
virtual int close (u_long);
// Terminate the <Connection_Handler>.
- virtual int svc (void);
+ virtual int svc ();
// Run the <Connection_Handler>'s main event loop.
protected:
diff --git a/ACE/examples/Connection/non_blocking/CPP-acceptor.h b/ACE/examples/Connection/non_blocking/CPP-acceptor.h
index 2963fce575c..3c38d7c0d70 100644
--- a/ACE/examples/Connection/non_blocking/CPP-acceptor.h
+++ b/ACE/examples/Connection/non_blocking/CPP-acceptor.h
@@ -59,10 +59,10 @@ public:
virtual int init (int argc, ACE_TCHAR *argv[]);
// Initialize the network server.
- virtual int fini (void);
+ virtual int fini ();
// Close down the server.
- virtual int svc (void);
+ virtual int svc ();
// Run the interative service.
private:
diff --git a/ACE/examples/Connection/non_blocking/CPP-connector.h b/ACE/examples/Connection/non_blocking/CPP-connector.h
index 72e988e882b..a6c228d0e9a 100644
--- a/ACE/examples/Connection/non_blocking/CPP-connector.h
+++ b/ACE/examples/Connection/non_blocking/CPP-connector.h
@@ -66,10 +66,10 @@ public:
virtual int init (int argc, ACE_TCHAR *argv[]);
// Initialize the IPC client.
- virtual int fini (void);
+ virtual int fini ();
// Destroy the IPC client.
- virtual int svc (void);
+ virtual int svc ();
// Run the svc.
private:
diff --git a/ACE/examples/IPC_SAP/SOCK_SAP/CPP-inserver-fancy.cpp b/ACE/examples/IPC_SAP/SOCK_SAP/CPP-inserver-fancy.cpp
index 22e3f507117..1bf30a36ab5 100644
--- a/ACE/examples/IPC_SAP/SOCK_SAP/CPP-inserver-fancy.cpp
+++ b/ACE/examples/IPC_SAP/SOCK_SAP/CPP-inserver-fancy.cpp
@@ -86,7 +86,7 @@ protected:
// Hook method called by the <svc> template method to do the actual
// protocol. Must be overridden by the subclass.
- virtual int svc (void);
+ virtual int svc ();
// Template method entry point into the handler task.
virtual void print_results (void);
diff --git a/ACE/examples/IPC_SAP/SSL_SAP/SSL-server-fancy.cpp b/ACE/examples/IPC_SAP/SSL_SAP/SSL-server-fancy.cpp
index 3e6bede08b2..c9521664bc7 100644
--- a/ACE/examples/IPC_SAP/SSL_SAP/SSL-server-fancy.cpp
+++ b/ACE/examples/IPC_SAP/SSL_SAP/SSL-server-fancy.cpp
@@ -87,7 +87,7 @@ protected:
// Hook method called by the <svc> template method to do the actual
// protocol. Must be overridden by the subclass.
- virtual int svc (void);
+ virtual int svc ();
// Template method entry point into the handler task.
virtual void print_results (void);
diff --git a/ACE/examples/NT_Service/ntsvc.h b/ACE/examples/NT_Service/ntsvc.h
index ee04caaadf2..02d212adbd3 100644
--- a/ACE/examples/NT_Service/ntsvc.h
+++ b/ACE/examples/NT_Service/ntsvc.h
@@ -40,7 +40,7 @@ public:
virtual int handle_exception (ACE_HANDLE h);
/// This is a virtual method inherited from ACE_NT_Service.
- virtual int svc (void);
+ virtual int svc ();
/// Where the real work is done:
virtual int handle_timeout (const ACE_Time_Value& tv,
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,
diff --git a/ACE/examples/Service_Configurator/IPC-tests/server/Handle_Broadcast.h b/ACE/examples/Service_Configurator/IPC-tests/server/Handle_Broadcast.h
index d8dc8df002d..fff847ceea8 100644
--- a/ACE/examples/Service_Configurator/IPC-tests/server/Handle_Broadcast.h
+++ b/ACE/examples/Service_Configurator/IPC-tests/server/Handle_Broadcast.h
@@ -24,7 +24,7 @@ public:
~Handle_Broadcast (void);
virtual int init (int argc, ACE_TCHAR *argv[]);
virtual int info (ACE_TCHAR **, size_t) const;
- virtual int fini (void);
+ virtual int fini ();
private:
int open (const ACE_INET_Addr &r, int async = 0);
diff --git a/ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_CODgram.h b/ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_CODgram.h
index f7905a92d26..aeebf5a6971 100644
--- a/ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_CODgram.h
+++ b/ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_CODgram.h
@@ -24,7 +24,7 @@ public:
Handle_L_CODgram (void);
virtual int init (int argc, ACE_TCHAR *argv[]);
virtual int info (ACE_TCHAR **, size_t) const;
- virtual int fini (void);
+ virtual int fini ();
public:
int open (const ACE_UNIX_Addr &suad, int async = 0);
diff --git a/ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_Dgram.h b/ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_Dgram.h
index 2c4001a0394..e1c53b53129 100644
--- a/ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_Dgram.h
+++ b/ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_Dgram.h
@@ -24,7 +24,7 @@ public:
Handle_L_Dgram (void);
virtual int init (int argc, ACE_TCHAR *argv[]);
virtual int info (ACE_TCHAR **, size_t) const;
- virtual int fini (void);
+ virtual int fini ();
private:
int open (const ACE_UNIX_Addr &suad, int async = 0);
diff --git a/ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_FIFO.h b/ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_FIFO.h
index fb1adbc5132..8e9185f91da 100644
--- a/ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_FIFO.h
+++ b/ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_FIFO.h
@@ -23,7 +23,7 @@ public:
Handle_L_FIFO (void);
virtual int init (int argc, ACE_TCHAR *argv[]);
virtual int info (ACE_TCHAR **, size_t) const;
- virtual int fini (void);
+ virtual int fini ();
private:
int open (const ACE_TCHAR *rendezvous_fifo);
diff --git a/ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_Pipe.h b/ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_Pipe.h
index 698ddef333a..02363f695db 100644
--- a/ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_Pipe.h
+++ b/ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_Pipe.h
@@ -26,7 +26,7 @@ public:
~Handle_L_Pipe (void);
virtual int init (int argc, ACE_TCHAR *argv[]);
virtual int info (ACE_TCHAR **, size_t) const;
- virtual int fini (void);
+ virtual int fini ();
private:
int open (const ACE_UNIX_Addr &suap, int async = 0);
diff --git a/ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_SPIPE.h b/ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_SPIPE.h
index 57f763b296b..665b1759405 100644
--- a/ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_SPIPE.h
+++ b/ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_SPIPE.h
@@ -24,7 +24,7 @@ public:
Handle_L_SPIPE (void);
virtual int init (int argc, ACE_TCHAR *argv[]);
virtual int info (ACE_TCHAR **, size_t) const;
- virtual int fini (void);
+ virtual int fini ();
private:
int open (const ACE_SPIPE_Addr &rendezvous_spipe);
diff --git a/ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_Stream.h b/ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_Stream.h
index f53e0e53ea0..cd7ae8e7857 100644
--- a/ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_Stream.h
+++ b/ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_Stream.h
@@ -25,7 +25,7 @@ public:
~Handle_L_Stream (void);
virtual int init (int argc, ACE_TCHAR *argv[]);
virtual int info (ACE_TCHAR **, size_t) const;
- virtual int fini (void);
+ virtual int fini ();
private:
int open (const ACE_UNIX_Addr &suas, int async = 0);
diff --git a/ACE/examples/Service_Configurator/IPC-tests/server/Handle_R_Dgram.h b/ACE/examples/Service_Configurator/IPC-tests/server/Handle_R_Dgram.h
index d9476feb934..01da58ddbe1 100644
--- a/ACE/examples/Service_Configurator/IPC-tests/server/Handle_R_Dgram.h
+++ b/ACE/examples/Service_Configurator/IPC-tests/server/Handle_R_Dgram.h
@@ -22,7 +22,7 @@ public:
Handle_R_Dgram (void);
virtual int init (int argc, ACE_TCHAR *argv[]);
virtual int info (ACE_TCHAR **, size_t) const;
- virtual int fini (void);
+ virtual int fini ();
private:
int open (const ACE_INET_Addr &r, int async = 0);
diff --git a/ACE/examples/Service_Configurator/IPC-tests/server/Handle_R_Stream.h b/ACE/examples/Service_Configurator/IPC-tests/server/Handle_R_Stream.h
index 8b3cd811bf5..4f9dc98c304 100644
--- a/ACE/examples/Service_Configurator/IPC-tests/server/Handle_R_Stream.h
+++ b/ACE/examples/Service_Configurator/IPC-tests/server/Handle_R_Stream.h
@@ -24,7 +24,7 @@ public:
Handle_R_Stream (void);
virtual int init (int argc, ACE_TCHAR *argv[]);
virtual int info (ACE_TCHAR **, size_t) const;
- virtual int fini (void);
+ virtual int fini ();
private:
int open (const ACE_INET_Addr &sia, int async = 0);
diff --git a/ACE/examples/Service_Configurator/IPC-tests/server/Handle_Thr_Stream.h b/ACE/examples/Service_Configurator/IPC-tests/server/Handle_Thr_Stream.h
index 1207ba60af5..8db8172dca3 100644
--- a/ACE/examples/Service_Configurator/IPC-tests/server/Handle_Thr_Stream.h
+++ b/ACE/examples/Service_Configurator/IPC-tests/server/Handle_Thr_Stream.h
@@ -26,7 +26,7 @@ public:
// = Dynamic linking hooks.
virtual int init (int argc, ACE_TCHAR *argv[]);
virtual int info (ACE_TCHAR **, size_t) const;
- virtual int fini (void);
+ virtual int fini ();
private:
ACE_Thread_Manager thr_mgr_;
@@ -54,7 +54,7 @@ public:
virtual int close (u_long);
// Close down the service.
- virtual int svc (void);
+ virtual int svc ();
// Execute the service.
protected:
diff --git a/ACE/examples/Service_Configurator/IPC-tests/server/Handle_Timeout.h b/ACE/examples/Service_Configurator/IPC-tests/server/Handle_Timeout.h
index f9be20a305c..39858c7f062 100644
--- a/ACE/examples/Service_Configurator/IPC-tests/server/Handle_Timeout.h
+++ b/ACE/examples/Service_Configurator/IPC-tests/server/Handle_Timeout.h
@@ -21,7 +21,7 @@ public:
Handle_Timeout (void);
virtual int init (int argc, ACE_TCHAR *argv[]);
virtual int info (ACE_TCHAR **, size_t) const;
- virtual int fini (void);
+ virtual int fini ();
private:
virtual ACE_HANDLE get_handle (void) const;
diff --git a/ACE/examples/Threads/barrier2.cpp b/ACE/examples/Threads/barrier2.cpp
index 1fa492857d3..aaddab06bc9 100644
--- a/ACE/examples/Threads/barrier2.cpp
+++ b/ACE/examples/Threads/barrier2.cpp
@@ -45,7 +45,7 @@ public:
private:
virtual int put (ACE_Message_Block *mb, ACE_Time_Value *tv=0);
- virtual int svc (void);
+ virtual int svc ();
// Iterate <n_iterations> time printing off a message and "waiting"
// for all other threads to complete this iteration.
diff --git a/ACE/examples/Threads/future1.cpp b/ACE/examples/Threads/future1.cpp
index b80071185cb..57fe594f4ae 100644
--- a/ACE/examples/Threads/future1.cpp
+++ b/ACE/examples/Threads/future1.cpp
@@ -61,7 +61,7 @@ public:
virtual int open (void *args = 0);
virtual int close (u_long flags = 0);
- virtual int svc (void);
+ virtual int svc ();
ACE_Future<u_long> work (u_long param, int count = 1);
ACE_Future<const char*> name (void);
diff --git a/ACE/examples/Threads/future2.cpp b/ACE/examples/Threads/future2.cpp
index 20f66f10188..1708fbe0d5e 100644
--- a/ACE/examples/Threads/future2.cpp
+++ b/ACE/examples/Threads/future2.cpp
@@ -69,7 +69,7 @@ private:
virtual int close (u_long flags = 0);
/// Here the actual servicing of all requests is happening..
- virtual int svc (void);
+ virtual int svc ();
// = Implementation methods.
u_long work_i (u_long, int);
diff --git a/ACE/examples/Threads/task_four.cpp b/ACE/examples/Threads/task_four.cpp
index b53cc2e8223..e1f06fa7d1f 100644
--- a/ACE/examples/Threads/task_four.cpp
+++ b/ACE/examples/Threads/task_four.cpp
@@ -45,7 +45,7 @@ public:
size_t n_tasks,
size_t n_threads,
size_t n_iterations);
- virtual int svc (void);
+ virtual int svc ();
// creats <n_tasks> and wait for them to finish
private:
@@ -63,7 +63,7 @@ public:
Worker_Task (ACE_Thread_Manager *thr_mgr,
size_t n_threads,
size_t n_iterations);
- virtual int svc (void);
+ virtual int svc ();
//FUZZ: disable check_for_lack_ACE_OS
// Does a small work...
diff --git a/ACE/examples/Threads/task_one.cpp b/ACE/examples/Threads/task_one.cpp
index a5e36f6728d..bb0474c2894 100644
--- a/ACE/examples/Threads/task_one.cpp
+++ b/ACE/examples/Threads/task_one.cpp
@@ -21,7 +21,7 @@ public:
int n_threads,
int n_iterations);
- virtual int svc (void);
+ virtual int svc ();
// Iterate <n_iterations> time printing off a message and "waiting"
// for all other threads to complete this iteration.
diff --git a/ACE/examples/Threads/task_three.cpp b/ACE/examples/Threads/task_three.cpp
index 123676c82a7..dd7d1c749ee 100644
--- a/ACE/examples/Threads/task_three.cpp
+++ b/ACE/examples/Threads/task_three.cpp
@@ -41,7 +41,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 fd);
diff --git a/ACE/examples/Threads/task_two.cpp b/ACE/examples/Threads/task_two.cpp
index 560456e68c9..828322defa8 100644
--- a/ACE/examples/Threads/task_two.cpp
+++ b/ACE/examples/Threads/task_two.cpp
@@ -35,7 +35,7 @@ public:
virtual int close (u_long flags = 0);
//FUZZ: enable check_for_lack_ACE_OS
- virtual int svc (void);
+ virtual int svc ();
private:
static ACE_Thread_Mutex lock_;
diff --git a/ACE/examples/Threads/thread_pool.cpp b/ACE/examples/Threads/thread_pool.cpp
index dfd85641bd0..9d560cb29e0 100644
--- a/ACE/examples/Threads/thread_pool.cpp
+++ b/ACE/examples/Threads/thread_pool.cpp
@@ -38,7 +38,7 @@ public:
~Thread_Pool (void);
// Destructor...
- virtual int svc (void);
+ virtual int svc ();
// Iterate <n_iterations> time printing off a message and "waiting"
// for all other threads to complete this iteration.
diff --git a/ACE/examples/Threads/token.cpp b/ACE/examples/Threads/token.cpp
index e0df596e414..b9c7bbd3e41 100644
--- a/ACE/examples/Threads/token.cpp
+++ b/ACE/examples/Threads/token.cpp
@@ -13,7 +13,7 @@ class My_Task : public ACE_Task<ACE_MT_SYNCH>
{
public:
My_Task (int n);
- virtual int svc (void);
+ virtual int svc ();
static void sleep_hook (void *);
diff --git a/ACE/examples/Threads/tss1.cpp b/ACE/examples/Threads/tss1.cpp
index 2ef87c3819d..9fa78c3f2af 100644
--- a/ACE/examples/Threads/tss1.cpp
+++ b/ACE/examples/Threads/tss1.cpp
@@ -47,7 +47,7 @@ public:
Tester (void) {}
~Tester (void) {}
- virtual int svc (void);
+ virtual int svc ();
//FUZZ: disable check_for_lack_ACE_OS
/// Activate the thread.
diff --git a/ACE/examples/Threads/wfmo.cpp b/ACE/examples/Threads/wfmo.cpp
index ffad996a97f..a0c22c33991 100644
--- a/ACE/examples/Threads/wfmo.cpp
+++ b/ACE/examples/Threads/wfmo.cpp
@@ -27,7 +27,7 @@ public:
virtual int open (void *);
//FUZZ: enable check_for_lack_ACE_OS
- virtual int svc (void);
+ virtual int svc ();
// Use two handles here..
ACE_sema_t sema_handles_[2];
diff --git a/ACE/examples/Timer_Queue/Thread_Timer_Queue_Custom_Handler_Test.h b/ACE/examples/Timer_Queue/Thread_Timer_Queue_Custom_Handler_Test.h
index 5ccb0e01bff..6a357be66c9 100644
--- a/ACE/examples/Timer_Queue/Thread_Timer_Queue_Custom_Handler_Test.h
+++ b/ACE/examples/Timer_Queue/Thread_Timer_Queue_Custom_Handler_Test.h
@@ -64,7 +64,7 @@ public:
Thread_Timer_Queue_Custom_Handler_Test &timer_queue_driver);
/// This method runs the event loop in the new thread.
- virtual int svc (void);
+ virtual int svc ();
// = Some helper methods.
diff --git a/ACE/examples/Timer_Queue/Thread_Timer_Queue_Test.h b/ACE/examples/Timer_Queue/Thread_Timer_Queue_Test.h
index 97446bf213c..10e8443ad8c 100644
--- a/ACE/examples/Timer_Queue/Thread_Timer_Queue_Test.h
+++ b/ACE/examples/Timer_Queue/Thread_Timer_Queue_Test.h
@@ -66,7 +66,7 @@ public:
Thread_Timer_Queue_Test_Driver &timer_queue_driver);
/// This method runs the event loop in the new thread.
- virtual int svc (void);
+ virtual int svc ();
// = Some helper methods.