fixed type SIGMATHAULT -> SIGMATHFAULT

This commit is contained in:
antifallobst 2023-05-29 02:17:54 +02:00
parent 2c605cff1b
commit d82ea1bb5d
1 changed files with 1 additions and 1 deletions

View File

@ -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
---