diff options
author | Christopher Faylor <me@cgf.cx> | 2002-12-25 20:33:21 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-12-25 20:33:21 +0000 |
commit | 088f471c7534c4bd1a363a87463a2e2adf05297e (patch) | |
tree | 4a4e83e1dae8b5af79f6f39b2d638d1b8c19a838 /winsup/cygwin/exceptions.cc | |
parent | a8eb76e3e157b0531d82ed1b0f4dc57de235c275 (diff) | |
download | cygnal-088f471c7534c4bd1a363a87463a2e2adf05297e.tar.gz cygnal-088f471c7534c4bd1a363a87463a2e2adf05297e.tar.bz2 cygnal-088f471c7534c4bd1a363a87463a2e2adf05297e.zip |
* exceptions.cc (events_init): Initialize critical section to control exiting
via signal.
(signal_exit): Enter critical section early to avoid exit races with main
thread.
* dcrt0.cc (do_exit): Use exit_lock critical section to avoid races.
Diffstat (limited to 'winsup/cygwin/exceptions.cc')
-rw-r--r-- | winsup/cygwin/exceptions.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/winsup/cygwin/exceptions.cc b/winsup/cygwin/exceptions.cc index bbd5518d0..dc59dc5a4 100644 --- a/winsup/cygwin/exceptions.cc +++ b/winsup/cygwin/exceptions.cc @@ -1088,12 +1088,15 @@ sig_handle (int sig, bool thisproc) /* Never returns */ } +CRITICAL_SECTION NO_COPY exit_lock; + /* Cover function to `do_exit' to handle exiting even in presence of more exceptions. We used to call exit, but a SIGSEGV shouldn't cause atexit routines to run. */ static void signal_exit (int rc) { + EnterCriticalSection (&exit_lock); rc = EXIT_SIGNAL | (rc << 8); if (exit_already++) myself->exit (rc); @@ -1149,6 +1152,7 @@ events_init (void) debug_printf ("windows_system_directory '%s', windows_system_directory_length %d", windows_system_directory, windows_system_directory_length); debug_printf ("cygwin_hmodule %p", cygwin_hmodule); + InitializeCriticalSection (&exit_lock); } void |