12 lines
313 B
C
12 lines
313 B
C
|
|
#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};
|