mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-05 14:31:17 +12:00
Use _Exit instead of exit under Linux (#204)
The best ExitProcess alternative for Linux is _Exit since it doesn't call exit handlers.
This commit is contained in:
parent
6cdb6eed17
commit
f032088902
3 changed files with 4 additions and 2 deletions
|
@ -26,7 +26,7 @@ void handler_SIGINT(int sig)
|
|||
* by any mean ends up with a SIGABRT from the standard library destroying
|
||||
* threads.
|
||||
*/
|
||||
exit(0);
|
||||
_Exit(0);
|
||||
}
|
||||
|
||||
void ExceptionHandler_init()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue