diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-09-04 19:48:12 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-09-04 19:48:12 +0000 |
commit | b3ca664f3b602a9583543682436fc269c7438a10 (patch) | |
tree | 18431585f4ae9bc09d50ad820c56c4085f7f2184 /ace/Process_Manager.h | |
parent | 11fcb1cf2e2d3b9bd9b2c2cd22bd58e8ce973de5 (diff) | |
download | ATCD-b3ca664f3b602a9583543682436fc269c7438a10.tar.gz |
ChangeLogTag:Sat Sep 4 14:43:36 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
Diffstat (limited to 'ace/Process_Manager.h')
-rw-r--r-- | ace/Process_Manager.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ace/Process_Manager.h b/ace/Process_Manager.h index 68126602389..13a194a8fd8 100644 --- a/ace/Process_Manager.h +++ b/ace/Process_Manager.h @@ -212,7 +212,7 @@ public: pid_t wait (pid_t pid, const ACE_Time_Value &timeout, - int *status = 0); + ACE_exitcode *status = 0); // Wait up to <timeout> for a single process to terminate. If // pid==0, waits for any of the managed <Process>es (but see the // note in DESCRIPTION above for caveats about this -- "sloppy @@ -221,7 +221,7 @@ public: // if a timeout occurred, or ACE_INVALID_PID on error. pid_t wait (pid_t pid, - int *status = 0); + ACE_exitcode *status = 0); // Wait indefinitely for a single process to terminate. If pid==0, // waits for any of the managed <Process>es (but see the note in // DESCRIPTION above for caveats about this -- "sloppy Process @@ -341,7 +341,7 @@ private: int notify_proc_handler (ACE_HANDLE proc, pid_t pid, - int status); + ACE_exitcode status); // If there's a specific handler for <pid>'s exit, or a default // handler, call it. |