23 lines
856 B
C
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();
|
|
}
|