diff options
author | Christopher Faylor <me@cgf.cx> | 2004-03-04 05:31:14 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2004-03-04 05:31:14 +0000 |
commit | 08b0a057eb40204cd187e898b272b09eaec47391 (patch) | |
tree | 244fcc9699a7ba0f390e51c1b75a6f43d7776725 /winsup/cygwin/exceptions.cc | |
parent | 13a47bd66a97e146afef8b6f92bbbefbbf956a1b (diff) | |
download | cygnal-08b0a057eb40204cd187e898b272b09eaec47391.tar.gz cygnal-08b0a057eb40204cd187e898b272b09eaec47391.tar.bz2 cygnal-08b0a057eb40204cd187e898b272b09eaec47391.zip |
* gendef (sigreturn): Call stabilize_sig_stack to ensure that there are no
pending signals. Restore edx later.
(sigdelayed): Save edx earlier.
* malloc_wrapper.cc (malloc_init): Add some more debugging output.
Diffstat (limited to 'winsup/cygwin/exceptions.cc')
-rw-r--r-- | winsup/cygwin/exceptions.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/winsup/cygwin/exceptions.cc b/winsup/cygwin/exceptions.cc index 94163fd52..45d840aee 100644 --- a/winsup/cygwin/exceptions.cc +++ b/winsup/cygwin/exceptions.cc @@ -1200,4 +1200,5 @@ reset_signal_arrived () { (void) ResetEvent (signal_arrived); sigproc_printf ("reset signal_arrived"); +if (_my_tls.stackptr > _my_tls.stack) debug_printf ("stackptr[-1] %p", _my_tls.stackptr[-1]); } |