diff options
author | Christopher Faylor <me@cgf.cx> | 2005-09-14 14:00:07 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-09-14 14:00:07 +0000 |
commit | a611ae50d5c1106988df7ec8b053efc332e35ae3 (patch) | |
tree | 0057df8d08fd439ed9bcfb06bd07538c6f2f9d6e /winsup/cygwin/cygtls.h | |
parent | 67483cb2cdee37aa435fd108cea5310a873925a3 (diff) | |
download | cygnal-a611ae50d5c1106988df7ec8b053efc332e35ae3.tar.gz cygnal-a611ae50d5c1106988df7ec8b053efc332e35ae3.tar.bz2 cygnal-a611ae50d5c1106988df7ec8b053efc332e35ae3.zip |
* exceptions.cc (sigtid): Remove declaration.
(handle_exceptions): Use _sig_tls rather than sigtid to determine if this is
the signal thread.
(set_signal_mask): Ditto for conditionalized CGF code.
* pinfo.cc (pinfo::exit): Exit the thread if we forcefully terminated the main
thread
* sigproc.cc (sigtid): Delete.
(_sig_tls): Define.
(sig_clear): Use _sig_tls rather than sigtid to determine if this is the signal
thread.
(sig_dispatch_pending): Ditto.
(wait_sig): Set _sig_tls here.
* dcrt0.cc (do_exit): Move sigproc_terminate call later since signal handling
was still needed for subsequent stuff. Call sigproc_terminate with new
exit_state value.
* pinfo.cc (pinfo::exit): Call sigproc_terminate with new exit_state value.
* sigproc.cc (proc_terminate): Remove unnecessary (void) parameter.
(sigproc_terminate): Ditto. Add new argument to accept exit state to be set.
(wait_sig): Reorganize __SIGEXIT handling. Add more debugging output.
* winsup.h (sigproc_terminate): Declare with new exit_state argument.
(exit_states): Reorganize to reflect new exit ordering of sigproc_terminate.
Diffstat (limited to 'winsup/cygwin/cygtls.h')
-rw-r--r-- | winsup/cygwin/cygtls.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/winsup/cygwin/cygtls.h b/winsup/cygwin/cygtls.h index 627531849..65994ebfa 100644 --- a/winsup/cygwin/cygtls.h +++ b/winsup/cygwin/cygtls.h @@ -248,6 +248,7 @@ extern char *_tlsbase __asm__ ("%fs:4"); extern char *_tlstop __asm__ ("%fs:8"); #define _my_tls (((_cygtls *) _tlsbase)[-1]) extern _cygtls *_main_tls; +extern _cygtls *_sig_tls; /*gentls_offsets*/ class myfault |