Files
hakmem/core/box/front_fastlane_box.c
2025-12-14 16:28:23 +09:00

23 lines
856 B
C

// ============================================================================
// Phase 6: Front FastLane Box (Cold Helpers / Stats)
// ============================================================================
//
// Purpose: Cold-path helpers and stats dump for FrontFastLaneBox
//
// Note: Main hot-path logic is inline in front_fastlane_box.h
// This .c file provides cold helpers and stats management
//
// ============================================================================
#include "front_fastlane_box.h"
#include "front_fastlane_stats_box.h"
#include <stdio.h>
// Cold helper: Stats dump (called on exit if needed)
// Note: front_fastlane_stats_dump() is already defined in stats_box.h
// This function provides a public entry point for external callers
void front_fastlane_dump_stats(void) {
front_fastlane_stats_dump();
}