Working state before pushing to cyu remote

This commit is contained in:
Moe Charm (CI)
2025-12-19 03:45:01 +09:00
parent e4c5f05355
commit 2013514f7b
28 changed files with 1968 additions and 43 deletions

View File

@ -28,6 +28,7 @@
#include "core/box/ss_stats_box.h"
#include "core/box/warm_pool_rel_counters_box.h"
#include "core/box/tiny_mem_stats_box.h"
#include "core/box/tiny_inline_slots_overflow_stats_box.h"
// Box BenchMeta: Benchmark metadata management (bypass hakmem wrapper)
// Phase 15: Separate BenchMeta (slots array) from CoreAlloc (user workload)
@ -423,5 +424,10 @@ int main(int argc, char** argv){
#endif
#endif
// Phase 87: Print overflow statistics
#ifdef USE_HAKMEM
tiny_inline_slots_overflow_report_stats();
#endif
return 0;
}