summaryrefslogtreecommitdiff
path: root/ACE/apps
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/apps
parent60d97734bef3939bb7ed54170fbcf9a1b459b496 (diff)
downloadATCD-317dd62b7112b590efe99283ceb4b2e5e5649884.tar.gz
Documentation, layout, C++11 changes
Diffstat (limited to 'ACE/apps')
-rw-r--r--ACE/apps/Gateway/Gateway/Concrete_Connection_Handlers.h4
-rw-r--r--ACE/apps/Gateway/Gateway/Gateway.cpp2
-rw-r--r--ACE/apps/Gateway/Peer/Peer.h2
-rw-r--r--ACE/apps/JAWS/clients/Caching/http_handler.h2
-rw-r--r--ACE/apps/JAWS/server/HTTP_Server.h8
-rw-r--r--ACE/apps/JAWS/server/JAWS_Concurrency.h2
-rw-r--r--ACE/apps/JAWS2/JAWS/Concurrency.h2
-rw-r--r--ACE/apps/JAWS2/JAWS/Reaper.h2
8 files changed, 12 insertions, 12 deletions
diff --git a/ACE/apps/Gateway/Gateway/Concrete_Connection_Handlers.h b/ACE/apps/Gateway/Gateway/Concrete_Connection_Handlers.h
index 43a0111041d..1e21542d46d 100644
--- a/ACE/apps/Gateway/Gateway/Concrete_Connection_Handlers.h
+++ b/ACE/apps/Gateway/Gateway/Concrete_Connection_Handlers.h
@@ -107,7 +107,7 @@ protected:
virtual int handle_input (ACE_HANDLE);
/// Transmit peer messages.
- virtual int svc (void);
+ virtual int svc ();
/**
* When thread started, connection become blocked, so no need to use
@@ -149,7 +149,7 @@ protected:
ACE_Reactor_Mask = ACE_Event_Handler::ALL_EVENTS_MASK);
/// Transmit peer messages.
- virtual int svc (void);
+ virtual int svc ();
private:
/// If the controlling is in thread's svc() or not.
diff --git a/ACE/apps/Gateway/Gateway/Gateway.cpp b/ACE/apps/Gateway/Gateway/Gateway.cpp
index a443ccde4df..0aa586c6fc8 100644
--- a/ACE/apps/Gateway/Gateway/Gateway.cpp
+++ b/ACE/apps/Gateway/Gateway/Gateway.cpp
@@ -23,7 +23,7 @@ protected:
virtual int init (int argc, ACE_TCHAR *argv[]);
// Perform initialization.
- virtual int fini (void);
+ virtual int fini ();
// Perform termination when unlinked dynamically.
virtual int info (ACE_TCHAR **, size_t) const;
diff --git a/ACE/apps/Gateway/Peer/Peer.h b/ACE/apps/Gateway/Peer/Peer.h
index 9bf0c91dbb2..2cc6c0da1b1 100644
--- a/ACE/apps/Gateway/Peer/Peer.h
+++ b/ACE/apps/Gateway/Peer/Peer.h
@@ -236,7 +236,7 @@ public:
virtual int init (int argc, ACE_TCHAR *argv[]);
/// Perform termination activities.
- virtual int fini (void);
+ virtual int fini ();
/// Return info about this service.
virtual int info (ACE_TCHAR **, size_t) const;
diff --git a/ACE/apps/JAWS/clients/Caching/http_handler.h b/ACE/apps/JAWS/clients/Caching/http_handler.h
index b6329071358..d6482dee30e 100644
--- a/ACE/apps/JAWS/clients/Caching/http_handler.h
+++ b/ACE/apps/JAWS/clients/Caching/http_handler.h
@@ -37,7 +37,7 @@ public:
virtual int open (void *);
/// Entry points defined by the abstract Svc_Handler.
- virtual int svc (void);
+ virtual int svc ();
/// Accessor to the file being fetched.
const char *filename (void) const;
diff --git a/ACE/apps/JAWS/server/HTTP_Server.h b/ACE/apps/JAWS/server/HTTP_Server.h
index 55ecd655e9e..9ee7bfb241a 100644
--- a/ACE/apps/JAWS/server/HTTP_Server.h
+++ b/ACE/apps/JAWS/server/HTTP_Server.h
@@ -56,7 +56,7 @@ public:
virtual int init (int argc, ACE_TCHAR *argv[]);
/// Exit hooks
- virtual int fini (void);
+ virtual int fini ();
protected:
/// Thread Per Request implementation
@@ -96,7 +96,7 @@ public:
ACE_Thread_Manager &tm,
int threads,
HTTP_Handler_Factory &factory);
- virtual int svc (void);
+ virtual int svc ();
private:
HTTP_Acceptor &acceptor_;
@@ -121,7 +121,7 @@ public:
HTTP_Handler_Factory &factory);
virtual int open (void *args = 0);
virtual int close (u_long);
- virtual int svc (void);
+ virtual int svc ();
private:
ACE_HANDLE handle_;
@@ -143,7 +143,7 @@ class Asynch_Thread_Pool_Task : public ACE_Task<ACE_NULL_SYNCH>
public:
Asynch_Thread_Pool_Task (ACE_Proactor &proactor,
ACE_Thread_Manager &tm);
- virtual int svc (void);
+ virtual int svc ();
private:
ACE_Proactor &proactor_;
diff --git a/ACE/apps/JAWS/server/JAWS_Concurrency.h b/ACE/apps/JAWS/server/JAWS_Concurrency.h
index 30db0052455..08c9d88a20f 100644
--- a/ACE/apps/JAWS/server/JAWS_Concurrency.h
+++ b/ACE/apps/JAWS/server/JAWS_Concurrency.h
@@ -24,7 +24,7 @@ class JAWS_Concurrency_Base : public ACE_Task<ACE_SYNCH>
public:
JAWS_Concurrency_Base (void);
virtual int put (ACE_Message_Block *mb, ACE_Time_Value *tv = 0);
- virtual int svc (void);
+ virtual int svc ();
};
class JAWS_Dispatch_Policy
diff --git a/ACE/apps/JAWS2/JAWS/Concurrency.h b/ACE/apps/JAWS2/JAWS/Concurrency.h
index 85f495facb5..00d290d0e16 100644
--- a/ACE/apps/JAWS2/JAWS/Concurrency.h
+++ b/ACE/apps/JAWS2/JAWS/Concurrency.h
@@ -33,7 +33,7 @@ public:
~JAWS_Concurrency_Base (void);
virtual int put (ACE_Message_Block *mb, ACE_Time_Value *tv = 0);
- virtual int svc (void);
+ virtual int svc ();
virtual int svc_loop (JAWS_Data_Block *db);
// in thread pool, this is an infinite loop
diff --git a/ACE/apps/JAWS2/JAWS/Reaper.h b/ACE/apps/JAWS2/JAWS/Reaper.h
index b29211eb728..28ec31dc159 100644
--- a/ACE/apps/JAWS2/JAWS/Reaper.h
+++ b/ACE/apps/JAWS2/JAWS/Reaper.h
@@ -33,7 +33,7 @@ public:
virtual ~JAWS_Reaper (void);
virtual int open (void * = 0);
- virtual int svc (void);
+ virtual int svc ();
private:
JAWS_Concurrency_Base *concurrency_;