mirror of
https://github.com/RGBCube/serenity
synced 2025-05-29 07:05:06 +00:00
Kernel+LibC+UE: Introduce SIGINFO (generated with ^T)
This signal is ignored by default, but can be caught to implement state reporting a la BSD. :^)
This commit is contained in:
parent
687aad01be
commit
f8e59addf7
5 changed files with 10 additions and 4 deletions
|
@ -433,11 +433,11 @@ static DefaultSignalAction default_signal_action(u8 signal)
|
|||
case SIGIO:
|
||||
case SIGPROF:
|
||||
case SIGTERM:
|
||||
case SIGPWR:
|
||||
return DefaultSignalAction::Terminate;
|
||||
case SIGCHLD:
|
||||
case SIGURG:
|
||||
case SIGWINCH:
|
||||
case SIGINFO:
|
||||
return DefaultSignalAction::Ignore;
|
||||
case SIGQUIT:
|
||||
case SIGILL:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue