mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-06-23 20:24:59 -07:00
separate per-name-map baking stages from each other, and from top-level name map section build; do them all independently
This commit is contained in:
@@ -8,6 +8,15 @@ ts_ticket_zero(void)
|
||||
return ticket;
|
||||
}
|
||||
|
||||
internal void
|
||||
ts_ticket_list_push(Arena *arena, TS_TicketList *list, TS_Ticket ticket)
|
||||
{
|
||||
TS_TicketNode *n = push_array(arena, TS_TicketNode, 1);
|
||||
n->v = ticket;
|
||||
SLLQueuePush(list->first, list->last, n);
|
||||
list->count += 1;
|
||||
}
|
||||
|
||||
////////////////////////////////
|
||||
//~ rjf: Top-Level Layer Initialization
|
||||
|
||||
|
||||
Reference in New Issue
Block a user