* exceptions.cc (sigframe::call_signal_handler): Return value of

call_signal_handler_now.
* sigproc.h (sigframe): Use constructor.
* syscalls.cc (_read): Correct errno test prior to calling signal handler.
This commit is contained in:
Christopher Faylor
2001-04-02 00:18:29 +00:00
parent 0ef785e4ee
commit 1ba3935dfb
4 changed files with 20 additions and 14 deletions

View File

@@ -71,7 +71,7 @@ public:
t.get_winapi_lock ();
}
sigframe () {st = NULL;}
sigframe (): st (NULL) {}
sigframe (sigthread &t, DWORD ebp = (DWORD) __builtin_frame_address (0))
{
if (!t.frame && t.id == GetCurrentThreadId ())