Fix new changes to runtime for unix

This commit is contained in:
gingerBill
2019-12-31 14:04:19 +00:00
parent 5a50ab7a99
commit c407687a4c
2 changed files with 14 additions and 11 deletions
+2 -2
View File
@@ -65,8 +65,8 @@ create :: proc(procedure: Thread_Proc, priority := Thread_Priority.Normal) -> ^T
t.procedure(t);
if !t.use_init_context {
if context.temp_allocator.data == &runtime.global_scratch_allocator_data {
runtime.global_scratch_allocator_destroy(auto_cast context.temp_allocator.data);
if context.temp_allocator.data == &runtime.global_default_temp_allocator_data {
runtime.default_temp_allocator_destroy(auto_cast context.temp_allocator.data);
}
}