From d556fa2cd8570363a66a7d8a2a5abf5ba306e954 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Sun, 3 Jun 2018 15:06:40 +0100 Subject: Remove special shared scope for runtime stuff --- core/thread/thread_windows.odin | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'core/thread') diff --git a/core/thread/thread_windows.odin b/core/thread/thread_windows.odin index adf59b898..369a61072 100644 --- a/core/thread/thread_windows.odin +++ b/core/thread/thread_windows.odin @@ -1,5 +1,6 @@ package thread +import "core:runtime" import "core:sys/win32" Thread_Proc :: #type proc(^Thread) -> int; @@ -15,7 +16,7 @@ Thread :: struct { data: rawptr, user_index: int, - init_context: Context, + init_context: runtime.Context, use_init_context: bool, } -- cgit v1.2.3