mirror of
https://github.com/decompals/wibo.git
synced 2025-12-15 08:06:20 +00:00
Always use _exit to terminate (for now)
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
#include "common.h"
|
||||
#include "context.h"
|
||||
#include "kernel32/internal.h"
|
||||
#include "modules.h"
|
||||
|
||||
namespace mscoree {
|
||||
@@ -7,7 +8,7 @@ namespace mscoree {
|
||||
void WIN_FUNC CorExitProcess(int exitCode) {
|
||||
HOST_CONTEXT_GUARD();
|
||||
DEBUG_LOG("CorExitProcess(%i)\n", exitCode);
|
||||
exit(exitCode);
|
||||
kernel32::exitInternal(exitCode);
|
||||
}
|
||||
|
||||
} // namespace mscoree
|
||||
|
||||
Reference in New Issue
Block a user