summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1999-08-31 20:56:31 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1999-08-31 20:56:31 +0000
commit7181663a53162bbc35f9737121361b3ac6c4d9b6 (patch)
tree77b8186e3fa6373fd1c7c68a2d62986c632f2922
parent4912df4bd2c193d7414257bd093017f69a2b6f57 (diff)
downloadATCD-7181663a53162bbc35f9737121361b3ac6c4d9b6.tar.gz
ChangeLogTag:Tue Aug 31 15:54:56 1999 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
-rw-r--r--ChangeLog-99b6
-rw-r--r--ace/Process_Manager.h6
2 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog-99b b/ChangeLog-99b
index dc91077b31e..91013a30584 100644
--- a/ChangeLog-99b
+++ b/ChangeLog-99b
@@ -1,3 +1,9 @@
+Tue Aug 31 15:54:56 1999 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
+
+ * ace/Process_Manager.h: There was a bizarre default value
+ for the pid parameter, which was helping to cause ambiguity
+ warnings from the C++ compiler. I've removed this.
+
Tue Aug 31 00:16:34 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* build/egcs/tests/Cached_Accept_Conn_Test.h: Moved the template
diff --git a/ace/Process_Manager.h b/ace/Process_Manager.h
index 0074a752fc1..0cf697e2d38 100644
--- a/ace/Process_Manager.h
+++ b/ace/Process_Manager.h
@@ -159,9 +159,9 @@ public:
// Block until pid exits or <timeout> expires.
// Returns 0 on success and -1 on failure.
- int wait (pid_t pid = -(ACE_OS::getpid( )),
- int *stat_loc = 0,
- int options = WNOHANG );
+ int wait (pid_t pid,
+ int *stat_loc,
+ int options);
// Reap the result of a single process by calling <ACE_OS::wait>.
// If the child is successfully reaped, <remove> is called
// automatically. Note that this method can be portably called