set up base-layer tctx info for thread wavefront metadata

This commit is contained in:
Ryan Fleury
2025-08-15 12:16:58 -07:00
parent f754b4c2db
commit f1a1863d5c
5 changed files with 97 additions and 52 deletions
+3 -3
View File
@@ -105,10 +105,10 @@ main_thread_base_entry_point(int arguments_count, char **arguments)
internal void
supplement_thread_base_entry_point(void (*entry_point)(void *params), void *params)
{
TCTX tctx;
tctx_init_and_equip(&tctx);
TCTX *tctx = tctx_alloc();
tctx_select(tctx);
entry_point(params);
tctx_release();
tctx_release(tctx);
}
internal U64