mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 01:21:38 -07:00
stdcall -> system
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user