diff options
| author | gingerBill <bill@gingerbill.org> | 2018-06-03 15:06:40 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2018-06-03 15:06:40 +0100 |
| commit | d556fa2cd8570363a66a7d8a2a5abf5ba306e954 (patch) | |
| tree | e7ceed61e3bdfba8515f5c4048066b5567b71a7a /core/thread | |
| parent | 9bd7f023b204974264fc99ee268fd9e8a5df9570 (diff) | |
Remove special shared scope for runtime stuff
Diffstat (limited to 'core/thread')
| -rw-r--r-- | core/thread/thread_windows.odin | 3 |
1 files changed, 2 insertions, 1 deletions
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, } |