checkpoint on new baker; globals, threads, inline sites

This commit is contained in:
Ryan Fleury
2025-09-05 15:19:29 -07:00
parent 595270bdab
commit 618233eba1
3 changed files with 235 additions and 35 deletions
+1
View File
@@ -137,6 +137,7 @@
#define EachEnumVal(type, it) (type it = (type)0; it < type##_COUNT; it = (type)(it+1))
#define EachNonZeroEnumVal(type, it) (type it = (type)1; it < type##_COUNT; it = (type)(it+1))
#define EachInRange(it, range) (U64 it = (range).min; it < (range).max; it += 1)
#define EachNode(it, T, first) (T *n = first; n != 0; n = n->next)
////////////////////////////////
//~ rjf: Memory Operation Macros