* pinfo.h (pinfo::pinfo): Clear more elements in the constructor.

This commit is contained in:
Christopher Faylor 2005-03-10 01:50:09 +00:00
parent 2e5fb2d9fa
commit 35b4534efe
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2005-03-09 Christopher Faylor <cgf@timesys.com>
* pinfo.h (pinfo::pinfo): Clear more elements in the constructor.
2005-03-09 Christopher Faylor <cgf@timesys.com>
* net.cc (dup_ent): Revert older stupid test for null. Don't copy name

View File

@ -162,7 +162,7 @@ public:
pinfo () {}
pinfo (_pinfo *x): procinfo (x), hProcess (NULL) {}
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);}
pinfo (pid_t n, DWORD flag) : rd_proc_pipe (NULL), hProcess (NULL), waiter_ready (0), wait_thread (NULL) {init (n, flag, NULL);}
void release ();
int wait () __attribute__ ((regparm (1)));
~pinfo ()