* pinfo.cc (pinfo::wait): Use better name for cygthread.

This commit is contained in:
Christopher Faylor 2004-12-03 02:49:54 +00:00
parent 8151e674ba
commit 3ef7d75861
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2004-12-02 Christopher Faylor <cgf@timesys.com>
* pinfo.cc (pinfo::wait): Use better name for cygthread.
2004-12-03 Pierre Humblet <pierre.humblet@ieee.org>
* registry.h (reg_key::reg_key): Change arguments.

View File

@ -815,7 +815,7 @@ pinfo::wait ()
preserve (); /* Preserve the shared memory associated with the pinfo */
/* Fire up a new thread to track the subprocess */
cygthread *h = new cygthread (proc_waiter, this, "sig");
cygthread *h = new cygthread (proc_waiter, this, "proc_waiter");
if (!h)
sigproc_printf ("tracking thread creation failed for pid %d", (*this)->pid);
else