aboutsummaryrefslogtreecommitdiff
path: root/core/thread.odin
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2017-08-03 21:21:56 +0100
committerGinger Bill <bill@gingerbill.org>2017-08-03 21:21:56 +0100
commit49d337c83039715fd3100f6ec8a88dff80c08c4b (patch)
treef129486fb80a44dc106a277a576438d0ce344d8c /core/thread.odin
parent294092979e89faa67dc77d2261e9ddafc18b0d0d (diff)
v0.6.2; Use Ada_Case for typesv0.6.2
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;
}