* exceptions.cc (setup_handler): Reduce system_printf to sigproc_printf since
it is for a transient situation which will undoubtedly be handled.
This commit is contained in:
parent
cd1a95f55a
commit
3b20fd9324
|
@ -1,3 +1,9 @@
|
||||||
|
2012-02-09 Christopher Faylor <me.cygwin2012@cgf.cx>
|
||||||
|
|
||||||
|
* exceptions.cc (setup_handler): Reduce system_printf to sigproc_printf
|
||||||
|
since it is for a transient situation which will undoubtedly be
|
||||||
|
handled.
|
||||||
|
|
||||||
2012-02-09 Corinna Vinschen <corinna@vinschen.de>
|
2012-02-09 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* fhandler_dsp.cc (fhandler_dev_dsp::Audio_out::write): Set
|
* fhandler_dsp.cc (fhandler_dev_dsp::Audio_out::write): Set
|
||||||
|
|
|
@ -879,7 +879,7 @@ setup_handler (int sig, void *handler, struct sigaction& siga, _cygtls *tls)
|
||||||
}
|
}
|
||||||
cx.ContextFlags = CONTEXT_CONTROL | CONTEXT_INTEGER;
|
cx.ContextFlags = CONTEXT_CONTROL | CONTEXT_INTEGER;
|
||||||
if (!GetThreadContext (hth, &cx))
|
if (!GetThreadContext (hth, &cx))
|
||||||
system_printf ("couldn't get context of thread, %E");
|
sigproc_printf ("couldn't get context of thread, %E");
|
||||||
else
|
else
|
||||||
interrupted = tls->interrupt_now (&cx, sig, handler, siga);
|
interrupted = tls->interrupt_now (&cx, sig, handler, siga);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue