* exceptions.cc (_cygtls::signal_exit): There's no need to set signal_arrived

if we're exiting.
This commit is contained in:
Christopher Faylor 2009-10-08 15:56:14 +00:00
parent 80636211bc
commit 5391a40c89
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2009-10-08 Christopher Faylor <me+cygwin@cgf.cx>
* exceptions.cc (_cygtls::signal_exit): There's no need to set
signal_arrived if we're exiting.
2009-10-08 Eric Blake <ebb9@byu.net>
* fhandler_disk_file.cc (utimens_fs): Plug fd leak on EINVAL.

View File

@ -1340,7 +1340,6 @@ _cygtls::signal_exit (int rc)
SetThreadPriority (GetCurrentThread (), THREAD_PRIORITY_TIME_CRITICAL);
sigproc_printf ("about to call do_exit (%x)", rc);
SetEvent (signal_arrived);
do_exit (rc);
}