diff options
| author | gingerBill <bill@gingerbill.org> | 2023-07-31 11:46:40 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2023-07-31 11:46:40 +0100 |
| commit | 44ea82f8452876c4890884506111e243b8b2a541 (patch) | |
| tree | 60125606c148c6c2fa44d921936cdb7157a6046a /core/thread | |
| parent | 0de7df9eab9b256e0d1c8da7c9fc8c422c5ac1a7 (diff) | |
Clean up usage of `using` throughout core and vendor
Diffstat (limited to 'core/thread')
| -rw-r--r-- | core/thread/thread_windows.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/thread/thread_windows.odin b/core/thread/thread_windows.odin index 0d004c8c3..2d6cad1ad 100644 --- a/core/thread/thread_windows.odin +++ b/core/thread/thread_windows.odin @@ -129,8 +129,8 @@ _destroy :: proc(thread: ^Thread) { free(thread, thread.creation_allocator) } -_terminate :: proc(using thread : ^Thread, exit_code: int) { - win32.TerminateThread(win32_thread, u32(exit_code)) +_terminate :: proc(thread: ^Thread, exit_code: int) { + win32.TerminateThread(thread.win32_thread, u32(exit_code)) } _yield :: proc() { |