9 lines
315 B
C
9 lines
315 B
C
|
|
// tiny_sticky.c - Sticky TLS Active box
|
||
|
|
#include <stdint.h>
|
||
|
|
#include "hakmem_tiny.h"
|
||
|
|
#include "tiny_sticky.h"
|
||
|
|
|
||
|
|
__thread SuperSlab* g_tls_sticky_ss[TINY_NUM_CLASSES][TINY_STICKY_RING];
|
||
|
|
__thread uint8_t g_tls_sticky_idx[TINY_NUM_CLASSES][TINY_STICKY_RING];
|
||
|
|
__thread uint8_t g_tls_sticky_pos[TINY_NUM_CLASSES];
|