* signal.cc (_raise): New function.
* exceptions.cc (unused_sig_wrapper): Remove _raise. * sigproc.h (class sigframe): Default frames to skip to zero or suffer from exuberant optimization. * fhandler_tty.cc (fhandler_tty::write): Set appropriate errno when WriteFile to pipe fails.
This commit is contained in:
@@ -144,6 +144,12 @@ kill_worker (pid_t pid, int sig)
|
||||
return res;
|
||||
}
|
||||
|
||||
int
|
||||
_raise (int sig)
|
||||
{
|
||||
return _kill (myself->pid, sig);
|
||||
}
|
||||
|
||||
/* This is called _kill because the real kill is in newlib. */
|
||||
int
|
||||
_kill (pid_t pid, int sig)
|
||||
|
Reference in New Issue
Block a user