summaryrefslogtreecommitdiff
path: root/ACE/tests
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-03-09 13:31:46 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-03-09 13:31:46 +0100
commit317dd62b7112b590efe99283ceb4b2e5e5649884 (patch)
tree4df9cfc065c67e616010437b483dd97d2aba717b /ACE/tests
parent60d97734bef3939bb7ed54170fbcf9a1b459b496 (diff)
downloadATCD-317dd62b7112b590efe99283ceb4b2e5e5649884.tar.gz
Documentation, layout, C++11 changes
Diffstat (limited to 'ACE/tests')
-rw-r--r--ACE/tests/Bound_Ptr_Test.h2
-rw-r--r--ACE/tests/MEM_Stream_Test.h2
-rw-r--r--ACE/tests/MT_Reactor_Timer_Test.h2
-rw-r--r--ACE/tests/Priority_Reactor_Test.h2
-rw-r--r--ACE/tests/Process_Strategy_Test.h2
-rw-r--r--ACE/tests/SSL/Bug_2912_Regression_Test.cpp4
-rw-r--r--ACE/tests/Service_Config_DLL.h6
-rw-r--r--ACE/tests/Service_Config_Stream_DLL.h2
-rw-r--r--ACE/tests/Upgradable_RW_Test.h4
9 files changed, 13 insertions, 13 deletions
diff --git a/ACE/tests/Bound_Ptr_Test.h b/ACE/tests/Bound_Ptr_Test.h
index b6bc6691c0e..326fc2e8ae0 100644
--- a/ACE/tests/Bound_Ptr_Test.h
+++ b/ACE/tests/Bound_Ptr_Test.h
@@ -67,7 +67,7 @@ public:
protected:
/// Runs the Scheduler's event loop, which dequeues <Method_Requests>
/// and dispatches them.
- virtual int svc (void);
+ virtual int svc ();
private:
// = These are the <Scheduler> implementation details.
diff --git a/ACE/tests/MEM_Stream_Test.h b/ACE/tests/MEM_Stream_Test.h
index f81207b805b..cbba67d5562 100644
--- a/ACE/tests/MEM_Stream_Test.h
+++ b/ACE/tests/MEM_Stream_Test.h
@@ -42,7 +42,7 @@ public:
virtual int handle_input (ACE_HANDLE h);
virtual int handle_close (ACE_HANDLE handle,
ACE_Reactor_Mask close_mask);
- virtual int svc (void);
+ virtual int svc ();
private:
ACE_TCHAR name_[MAXPATHLEN];
diff --git a/ACE/tests/MT_Reactor_Timer_Test.h b/ACE/tests/MT_Reactor_Timer_Test.h
index 4c0a9e68f35..966a48e1500 100644
--- a/ACE/tests/MT_Reactor_Timer_Test.h
+++ b/ACE/tests/MT_Reactor_Timer_Test.h
@@ -40,7 +40,7 @@ public:
int verify_results(void);
/// Run by a daemon thread to handle deferred processing.
- virtual int svc (void);
+ virtual int svc ();
virtual int handle_timeout (const ACE_Time_Value &tv,
const void *arg);
diff --git a/ACE/tests/Priority_Reactor_Test.h b/ACE/tests/Priority_Reactor_Test.h
index 9d6caaace43..10a7ba3cd01 100644
--- a/ACE/tests/Priority_Reactor_Test.h
+++ b/ACE/tests/Priority_Reactor_Test.h
@@ -68,7 +68,7 @@ class Write_Handler : public ACE_Svc_Handler<ACE_SOCK_STREAM, ACE_SYNCH>
{
public:
virtual int open (void *);
- virtual int svc (void);
+ virtual int svc ();
};
#endif /* ACE_TESTS_PRIORITY_REACTOR_TEST_H */
diff --git a/ACE/tests/Process_Strategy_Test.h b/ACE/tests/Process_Strategy_Test.h
index 345480596dd..190b1d392ea 100644
--- a/ACE/tests/Process_Strategy_Test.h
+++ b/ACE/tests/Process_Strategy_Test.h
@@ -50,7 +50,7 @@ protected:
// = Methods invoked via "pointer to method" table entry.
/// Handle the THREAD case.
- virtual int svc (void);
+ virtual int svc ();
// = Operations corresponding to requests from the client.
/// Execute the read operation on the file.
diff --git a/ACE/tests/SSL/Bug_2912_Regression_Test.cpp b/ACE/tests/SSL/Bug_2912_Regression_Test.cpp
index 653b9ade93d..819413a431e 100644
--- a/ACE/tests/SSL/Bug_2912_Regression_Test.cpp
+++ b/ACE/tests/SSL/Bug_2912_Regression_Test.cpp
@@ -96,7 +96,7 @@ typedef ACE_Singleton<Client_Proactor, ACE_SYNCH_RECURSIVE_MUTEX>
class Client_Proactor_Task : public ACE_Task_Base
{
public:
- virtual int svc (void);
+ virtual int svc ();
};
typedef ACE_Singleton<Client_Proactor_Task, ACE_SYNCH_RECURSIVE_MUTEX>
@@ -125,7 +125,7 @@ typedef ACE_Singleton<Server_Proactor, ACE_SYNCH_RECURSIVE_MUTEX>
class Server_Proactor_Task : public ACE_Task_Base
{
public:
- virtual int svc (void);
+ virtual int svc ();
};
typedef ACE_Singleton<Server_Proactor_Task, ACE_SYNCH_RECURSIVE_MUTEX>
diff --git a/ACE/tests/Service_Config_DLL.h b/ACE/tests/Service_Config_DLL.h
index 27f966efe8c..ca66ec748db 100644
--- a/ACE/tests/Service_Config_DLL.h
+++ b/ACE/tests/Service_Config_DLL.h
@@ -42,14 +42,14 @@ public:
virtual int init (int argc, ACE_TCHAR *argv[]);
/// Terminates object when dynamic unlinking occurs.
- virtual int fini (void);
+ virtual int fini ();
/// Run by a daemon thread.
/**
* Each thread will invoke the Service Configurator via this
* method unless the object is the "FINAL" object.
*/
- virtual int svc (void);
+ virtual int svc ();
private:
@@ -75,7 +75,7 @@ public:
virtual int init (int argc, ACE_TCHAR *argv[]);
/// Terminates object when dynamic unlinking occurs.
- virtual int fini (void);
+ virtual int fini ();
/// Returns information on a service object.
virtual int info (ACE_TCHAR **info_string, size_t length = 0) const;
diff --git a/ACE/tests/Service_Config_Stream_DLL.h b/ACE/tests/Service_Config_Stream_DLL.h
index f54fc6da5cc..716c5fd147c 100644
--- a/ACE/tests/Service_Config_Stream_DLL.h
+++ b/ACE/tests/Service_Config_Stream_DLL.h
@@ -26,7 +26,7 @@ public:
//FUZZ: enable check_for_lack_ACE_OS
virtual int init (int, ACE_TCHAR *[]);
- virtual int fini (void);
+ virtual int fini ();
};
// Task to verify the order and operation of the stream assembly
diff --git a/ACE/tests/Upgradable_RW_Test.h b/ACE/tests/Upgradable_RW_Test.h
index 4382c1f9bb5..24ae64d5e30 100644
--- a/ACE/tests/Upgradable_RW_Test.h
+++ b/ACE/tests/Upgradable_RW_Test.h
@@ -113,7 +113,7 @@ public:
{
};
- virtual int svc (void);
+ virtual int svc ();
private:
/// keep a reference to the time calculation class
@@ -139,7 +139,7 @@ public:
{
};
- virtual int svc (void);
+ virtual int svc ();
private:
/// keep a reference to the time calculation class