summaryrefslogtreecommitdiff
path: root/ACE/ace/Process_Manager.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-12-09 14:59:53 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-12-09 14:59:53 +0100
commitf08a54e04d9eb26b402076b961fb5122ec1bbc3d (patch)
treee6c7cac74238a53dfd7475180285fccb86cb63a4 /ACE/ace/Process_Manager.h
parentc7c7a9dd9b8cd5cfc699c3c8b5f682bba5423a79 (diff)
downloadATCD-f08a54e04d9eb26b402076b961fb5122ec1bbc3d.tar.gz
Remove redundant void arg
Diffstat (limited to 'ACE/ace/Process_Manager.h')
-rw-r--r--ACE/ace/Process_Manager.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/ACE/ace/Process_Manager.h b/ACE/ace/Process_Manager.h
index 721fdeae978..90fc88d5472 100644
--- a/ACE/ace/Process_Manager.h
+++ b/ACE/ace/Process_Manager.h
@@ -130,11 +130,11 @@ public:
ACE_Reactor *r = 0);
/// Release all resources. Do not wait for processes to exit.
- int close (void);
+ int close ();
/// Destructor releases all resources and does not wait for processes
/// to exit.
- virtual ~ACE_Process_Manager (void);
+ virtual ~ACE_Process_Manager ();
//@}
@@ -143,14 +143,14 @@ public:
*/
//@{
/// Get pointer to a process-wide ACE_Process_Manager.
- static ACE_Process_Manager *instance (void);
+ static ACE_Process_Manager *instance ();
/// Set pointer to a process-wide ACE_Process_Manager and return
/// existing pointer.
static ACE_Process_Manager *instance (ACE_Process_Manager *);
/// Delete the dynamically allocated singleton.
- static void close_singleton (void);
+ static void close_singleton ();
/// Cleanup method, used by the ACE_Object_Manager to destroy the
/// singleton.
@@ -318,7 +318,7 @@ public:
int remove (pid_t pid);
/// Return the number of managed processes.
- size_t managed (void) const;
+ size_t managed () const;
/**
* Sets the scheduling parameters for process identified by @a pid by
@@ -339,7 +339,7 @@ public:
int set_scheduler_all (const ACE_Sched_Params &params);
/// Dump the state of an object.
- void dump (void) const;
+ void dump () const;
/// Declare the dynamic allocation hooks.
ACE_ALLOC_HOOK_DECLARE;
@@ -406,8 +406,8 @@ private:
struct Process_Descriptor
{
/// Default ctor/dtor.
- Process_Descriptor (void);
- ~Process_Descriptor (void);
+ Process_Descriptor ();
+ ~Process_Descriptor ();
/// Describes the process itself.
ACE_Process *process_;
@@ -416,7 +416,7 @@ private:
ACE_Event_Handler *exit_notify_;
/// Dump the state of an object.
- void dump (void) const;
+ void dump () const;
ACE_ALLOC_HOOK_DECLARE;
};