aboutsummaryrefslogtreecommitdiff
path: root/core/thread
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2024-01-17 17:25:23 +0000
committergingerBill <bill@gingerbill.org>2024-01-17 17:25:23 +0000
commit90ac400ec5a60a99fe16f2669edd22e4be14cf83 (patch)
tree99e2311233af49d50a6e4744b94f8f75878d04bc /core/thread
parent75c659fa418b963f66c2e863992d1e7bb257d654 (diff)
stdcall -> system
Diffstat (limited to 'core/thread')
-rw-r--r--core/thread/thread_windows.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/thread/thread_windows.odin b/core/thread/thread_windows.odin
index 2d6cad1ad..28b2294d1 100644
--- a/core/thread/thread_windows.odin
+++ b/core/thread/thread_windows.odin
@@ -21,7 +21,7 @@ _thread_priority_map := [Thread_Priority]i32{
_create :: proc(procedure: Thread_Proc, priority: Thread_Priority) -> ^Thread {
win32_thread_id: win32.DWORD
- __windows_thread_entry_proc :: proc "stdcall" (t_: rawptr) -> win32.DWORD {
+ __windows_thread_entry_proc :: proc "system" (t_: rawptr) -> win32.DWORD {
t := (^Thread)(t_)
t.id = sync.current_thread_id()