setup os_init() for manually starting up os_context

This commit is contained in:
2025-02-09 02:20:36 -05:00
parent 83ce4d1bb2
commit d867a8b0c0
9 changed files with 170 additions and 18 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ MD_API_C thread_static TCTX* tctx_thread_local = 0;
void
tctx_init_and_equip(TCTX* tctx)
{
memory_zero_struct(tctx);
// memory_zero_struct(tctx);
Arena** arena_ptr = tctx->arenas;
for (U64 i = 0; i < array_count(tctx->arenas); i += 1, arena_ptr += 1)