diff options
author | Christopher Faylor <me@cgf.cx> | 2004-12-03 02:49:54 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2004-12-03 02:49:54 +0000 |
commit | 3ef7d75861f84dae6422dd34205a62a7af1c7676 (patch) | |
tree | 2bb2e3f09a5d04669fbb27fb2afae4e0b9227f2b /winsup | |
parent | 8151e674bafcd9a4a54caa1cba6685737354cc6b (diff) | |
download | cygnal-3ef7d75861f84dae6422dd34205a62a7af1c7676.tar.gz cygnal-3ef7d75861f84dae6422dd34205a62a7af1c7676.tar.bz2 cygnal-3ef7d75861f84dae6422dd34205a62a7af1c7676.zip |
* pinfo.cc (pinfo::wait): Use better name for cygthread.
Diffstat (limited to 'winsup')
-rw-r--r-- | winsup/cygwin/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/cygwin/pinfo.cc | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index fc25b187c..b8b620e57 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -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. diff --git a/winsup/cygwin/pinfo.cc b/winsup/cygwin/pinfo.cc index 8a42daa47..a5eb4807f 100644 --- a/winsup/cygwin/pinfo.cc +++ b/winsup/cygwin/pinfo.cc @@ -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 |