Fix debug build after clean reset

This commit is contained in:
Moe Charm (CI)
2025-12-05 20:43:14 +09:00
parent 4c986fa9d1
commit 3e1d7c3798
6 changed files with 41 additions and 6 deletions

View File

@ -7,6 +7,7 @@
// Prerequisites: ss, meta, class_idx, ptr variables must be defined in calling scope
#if !HAKMEM_BUILD_RELEASE
if (!slab) {
// SuperSlab uses Magazine for TLS caching (same as TinySlab)
tiny_small_mags_init_once();
if (class_idx > 3) tiny_mag_init_if_needed(class_idx);
@ -200,6 +201,7 @@
#endif
HAK_STAT_FREE(class_idx);
return;
}
#endif // HAKMEM_BUILD_RELEASE
// Phase 7.6: TinySlab path (original)