diff options
author | Christopher Faylor <me@cgf.cx> | 2005-01-02 02:22:25 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-01-02 02:22:25 +0000 |
commit | 538776b743aa11df19021f90161b13a02c7138be (patch) | |
tree | 967d674667fb424906fd894554b1bdce797da85f /winsup/cygwin/cygthread.h | |
parent | d8c83adc04c2a7c13dd9a562189e049ea4c11a56 (diff) | |
download | cygnal-538776b743aa11df19021f90161b13a02c7138be.tar.gz cygnal-538776b743aa11df19021f90161b13a02c7138be.tar.bz2 cygnal-538776b743aa11df19021f90161b13a02c7138be.zip |
* cygthread.cc (cygthread::stub): Set inuse to false when exiting.
(cygthread::cygthread): Actually pass name as argument to debugging output to
avoid SEGV when strace'ing.
(cygthread::release): Don't set stack_ptr to NULL, since it is only set once on
first entry to a stub not on each stub iteration.
(cygthead::exit_thread): Remove obsolete function.
* cygthread.h (cygthread::exit_thread): Ditto.
Diffstat (limited to 'winsup/cygwin/cygthread.h')
-rw-r--r-- | winsup/cygwin/cygthread.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/winsup/cygwin/cygthread.h b/winsup/cygwin/cygthread.h index 81cb68140..7e659d07e 100644 --- a/winsup/cygwin/cygthread.h +++ b/winsup/cygwin/cygthread.h @@ -41,7 +41,6 @@ class cygthread operator HANDLE (); void * operator new (size_t); static cygthread *freerange (); - void exit_thread (); static void terminate (); bool SetThreadPriority (int nPriority) {return ::SetThreadPriority (h, nPriority);} void zap_h () |