#include "pool_tls_bind.h" /** * POOL_TLS_BIND_BOX - TID Cache Implementation * * This file provides the TLS storage for thread ID caching. * All logic is inlined in pool_tls_bind.h for performance. */ // TLS storage (per-thread, automatically zero-initialized) __thread PoolTLSBind g_pool_tls_bind = {0};