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
@@ -802,6 +802,7 @@ set_current_directory :: proc(path: string) -> (err: Errno) {
}
exit :: proc "contextless" (code: int) -> ! {
runtime._cleanup_runtime_contextless()
_unix_exit(c.int(code))
}