Fix #1606 (Call runtime._cleanup_runtime_contextless() for os.exit)

This commit is contained in:
gingerBill
2022-03-09 15:05:51 +00:00
parent 8e4d6b3e5d
commit 17eebf338c
7 changed files with 14 additions and 0 deletions
+1
View File
@@ -680,6 +680,7 @@ make_directory :: proc(path: string, mode: u32 = 0o775) -> Errno {
}
exit :: proc "contextless" (code: int) -> ! {
runtime._cleanup_runtime_contextless()
_unix_exit(i32(code))
}