aboutsummaryrefslogtreecommitdiff
path: root/winsup/cygwin/pinfo.h
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2005-01-26 00:15:11 +0000
committerChristopher Faylor <me@cgf.cx>2005-01-26 00:15:11 +0000
commit0e32d1ffcda1234552dec05f0ceb631521959870 (patch)
treef7b748ae9cd18ffad77e99c9fa2b4921bb0e3048 /winsup/cygwin/pinfo.h
parent72c1491bba149c8fbd9eb81a0a529aa8bad47bb5 (diff)
downloadnewlib-0e32d1ffcda1234552dec05f0ceb631521959870.zip
newlib-0e32d1ffcda1234552dec05f0ceb631521959870.tar.gz
newlib-0e32d1ffcda1234552dec05f0ceb631521959870.tar.bz2
* pinfo.h (pinfo::init): Make third parameter non-optional and propagate change
throughout. * pinfo.cc (set_myself): Pass INVALID_HANDLE_POINTER if h is NULL. (pinfo::init): Make third parameter non-optional. Eliminate use of PID_EXECED as an argument. Put setting of handle back inside loop but reorganize to try to open it only when necessary.
Diffstat (limited to 'winsup/cygwin/pinfo.h')
-rw-r--r--winsup/cygwin/pinfo.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/cygwin/pinfo.h b/winsup/cygwin/pinfo.h
index 013de17..3203a69 100644
--- a/winsup/cygwin/pinfo.h
+++ b/winsup/cygwin/pinfo.h
@@ -144,11 +144,11 @@ public:
bool waiter_ready;
/* Handle associated with initial Windows pid which started it all. */
class cygthread *wait_thread;
- void init (pid_t, DWORD, HANDLE = NULL) __attribute__ ((regparm(3)));
+ void init (pid_t, DWORD, HANDLE) __attribute__ ((regparm(3)));
pinfo () {}
pinfo (_pinfo *x): procinfo (x), hProcess (NULL) {}
- pinfo (pid_t n) : rd_proc_pipe (NULL), hProcess (NULL) {init (n, 0);}
- pinfo (pid_t n, DWORD flag) : rd_proc_pipe (NULL), hProcess (NULL) {init (n, flag);}
+ pinfo (pid_t n) : rd_proc_pipe (NULL), hProcess (NULL) {init (n, 0, NULL);}
+ pinfo (pid_t n, DWORD flag) : rd_proc_pipe (NULL), hProcess (NULL) {init (n, flag, NULL);}
void release ();
int wait () __attribute__ ((regparm (1)));
~pinfo ()