* exceptions.cc (ctrl_c_handler): Remove _my_tls.remove since it can cause
deadlocks during exec and will eventually be handled anyway.
This commit is contained in:
parent
47de562e7c
commit
13b4946d2a
|
@ -1,3 +1,8 @@
|
|||
2011-12-07 Christopher Faylor <me.cygwin2011@cgf.cx>
|
||||
|
||||
* exceptions.cc (ctrl_c_handler): Remove _my_tls.remove since it can
|
||||
cause deadlocks during exec and will eventually be handled anyway.
|
||||
|
||||
2011-12-07 Corinna Vinschen <vinschen@redhat.com>
|
||||
|
||||
* spawn.cc (child_info_spawn::worker): Add CREATE_BREAKAWAY_FROM_JOB
|
||||
|
|
|
@ -937,8 +937,6 @@ ctrl_c_handler (DWORD type)
|
|||
ExitProcess (STATUS_CONTROL_C_EXIT);
|
||||
}
|
||||
|
||||
_my_tls.remove (INFINITE);
|
||||
|
||||
#if 0
|
||||
if (type == CTRL_C_EVENT || type == CTRL_BREAK_EVENT)
|
||||
proc_subproc (PROC_KILLFORKED, 0);
|
||||
|
|
Loading…
Reference in New Issue