diff options
author | Christopher Faylor <me@cgf.cx> | 2005-10-02 00:13:41 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-10-02 00:13:41 +0000 |
commit | 0cb6fc5d3036aa449635383a36338ed63539a561 (patch) | |
tree | b5b481605dfb2016b6cdedfe96085ae47ee7ae6d /winsup/cygwin/exceptions.cc | |
parent | f5cfdc0fa440eb88870963cc9440369203bb0b13 (diff) | |
download | cygnal-0cb6fc5d3036aa449635383a36338ed63539a561.tar.gz cygnal-0cb6fc5d3036aa449635383a36338ed63539a561.tar.bz2 cygnal-0cb6fc5d3036aa449635383a36338ed63539a561.zip |
* dcrt0.cc (get_exit_lock): Use myself.lock rather than exit_lock.
* exceptions.cc (exit_lock): Delete.
(events_init): Don't init exit_lock.
* (_pinfo::commune_process): Add per-PICOM debugging.
* sigproc.cc (talktome): Add some temporary debugging statements.
* fhandler_proc.cc (format_proc_cpuinfo): Cosmetic change.
(format_proc_partitions): Ditto.
* syscalls.cc (locked_append): Ditto.
Diffstat (limited to 'winsup/cygwin/exceptions.cc')
-rw-r--r-- | winsup/cygwin/exceptions.cc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/winsup/cygwin/exceptions.cc b/winsup/cygwin/exceptions.cc index 02b2f2b49..93a3e8067 100644 --- a/winsup/cygwin/exceptions.cc +++ b/winsup/cygwin/exceptions.cc @@ -1167,8 +1167,6 @@ exit_sig: signal_exit (si.si_signo); /* 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. */ @@ -1229,7 +1227,6 @@ events_init () windows_system_directory_length = end - windows_system_directory; debug_printf ("windows_system_directory '%s', windows_system_directory_length %d", windows_system_directory, windows_system_directory_length); - InitializeCriticalSection (&exit_lock); } void |