From d82ea1bb5df2147bf2e77ea215fcf470fbfa17df Mon Sep 17 00:00:00 2001 From: antifallobst Date: Mon, 29 May 2023 02:17:54 +0200 Subject: [PATCH] fixed type SIGMATHAULT -> SIGMATHFAULT --- kernel/sysabi.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/sysabi.md b/kernel/sysabi.md index 13eefe1..607b534 100644 --- a/kernel/sysabi.md +++ b/kernel/sysabi.md @@ -124,7 +124,7 @@ If another process calls them, they will just return without doing anything. - __SIGKILL__: kills the process and destroys the processes data structures - __SIGEXIT__: send by the kernel before stopping the process - handler implementation possible - __SIGPFAULT__: sends when the process access memory it is not permitted to. Followed by SIGEXIT - handler implementation possible -- __SIGMATHAULT__: sends when the process does stuff like dividing by zero. Followed by SIGEXIT - handler implementation possible +- __SIGMATHFAULT__: sends when the process does stuff like dividing by zero. Followed by SIGEXIT - handler implementation possible ---