summaryrefslogtreecommitdiff
path: root/ACE/ace/Process_Manager.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-10-02 17:29:05 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-10-02 17:29:05 +0000
commite91577bca0483d85ef023a041fc95c9362c7a638 (patch)
tree64596e89fe88b295568485b641ece20ff2ef9594 /ACE/ace/Process_Manager.h
parent6249290fa983e204625fbd5b52a7a3c68ff8976c (diff)
downloadATCD-e91577bca0483d85ef023a041fc95c9362c7a638.tar.gz
Tue Oct 2 17:06:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/ace/Process_Manager.h')
-rw-r--r--ACE/ace/Process_Manager.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/ACE/ace/Process_Manager.h b/ACE/ace/Process_Manager.h
index 163c440bf46..cd9e2009eca 100644
--- a/ACE/ace/Process_Manager.h
+++ b/ACE/ace/Process_Manager.h
@@ -223,8 +223,7 @@ public:
*
* @retval 0 on success and -1 on failure.
*/
- int terminate (pid_t pid,
- int sig);
+ int terminate (pid_t pid, int sig);
/**
* Block until there are no more child processes running that were
@@ -409,8 +408,8 @@ private:
/// Resize the pool of Process_Descriptors.
int resize (size_t);
- /// Locate the index of the table slot occupied by <process_id>.
- /// Returns -1 if <process_id> is not in the <process_table_>
+ /// Locate the index of the table slot occupied by @a process_id.
+ /// Returns -1 if @a process_id is not in the <process_table_>
ssize_t find_proc (pid_t process_id);
#if defined (ACE_WIN32)
@@ -440,8 +439,7 @@ private:
/// If there's a specific handler for the Process at index @a n in the
/// table, or there's a default handler, call it.
- int notify_proc_handler (size_t n,
- ACE_exitcode status);
+ int notify_proc_handler (size_t n, ACE_exitcode status);
/// Vector that describes process state within the Process_Manager.
Process_Descriptor *process_table_;
@@ -462,7 +460,7 @@ private:
/// Controls whether the <Process_Manager> is deleted when we shut
/// down (we can only delete it safely if we created it!)
- static int delete_instance_;
+ static bool delete_instance_;
#if defined (ACE_HAS_THREADS)
/// This lock protects access/ops on <process_table_>.