Remove context.thread_id

This commit is contained in:
gingerBill
2021-06-08 15:57:00 +01:00
parent f19bb0f4d4
commit 8ec2ca9dcd
14 changed files with 58 additions and 32 deletions
-4
View File
@@ -11,7 +11,3 @@ _os_write :: proc "contextless" (data: []byte) -> (int, _OS_Errno) {
n, err := os.write(os.stderr, data);
return int(n), _OS_Errno(err);
}
_current_thread_id :: proc "contextless" () -> int {
return os.current_thread_id();
}