aboutsummaryrefslogtreecommitdiff
path: root/core/thread.odin
diff options
context:
space:
mode:
Diffstat (limited to 'core/thread.odin')
-rw-r--r--core/thread.odin4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/thread.odin b/core/thread.odin
index 82f26eef5..3510ad8af 100644
--- a/core/thread.odin
+++ b/core/thread.odin
@@ -3,7 +3,7 @@ _ :: compile_assert(ODIN_OS == "windows");
import win32 "sys/windows.odin";
Thread :: struct {
- using specific: OsSpecific;
+ using specific: Os_Specific;
procedure: Proc;
data: any;
user_index: int;
@@ -12,7 +12,7 @@ Thread :: struct {
use_init_context: bool;
Proc :: #type proc(^Thread) -> int;
- OsSpecific :: struct {
+ Os_Specific :: struct {
win32_thread: win32.Handle;
win32_thread_id: u32;
}