]> sourceware.org Git - newlib-cygwin.git/commitdiff
* pinfo.h (pinfo::pinfo): Clear more elements in the constructor.
authorChristopher Faylor <me@cgf.cx>
Thu, 10 Mar 2005 01:50:09 +0000 (01:50 +0000)
committerChristopher Faylor <me@cgf.cx>
Thu, 10 Mar 2005 01:50:09 +0000 (01:50 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/pinfo.h

index 1db62825b1541d05fab60cbcc573fe8d3780ee21..b48ce0a3ff6be883175dd4ec1f96a71c3ffcc18c 100644 (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
        Add check for existing mapping for anonymous MAP_FIXED case.
 
 2005-02-23  Corinna Vinschen  <corinna@vinschen.de>
-       
+
        * localtime.cc: Implement setting __tzrule's offset member using
        newlib's __gettzinfo () interface.
        (__tzrule): Remove.
index 877c222358aaa6e083bb5b982796780d4d4bd3a2..33954fc4c1211214a6ce75e07f355ed1b4304bf4 100644 (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 ()
This page took 0.033357 seconds and 5 git commands to generate.