12 lines
241 B
C
12 lines
241 B
C
|
|
#ifndef POOL_REFILL_H
|
||
|
|
#define POOL_REFILL_H
|
||
|
|
|
||
|
|
#include <stddef.h>
|
||
|
|
|
||
|
|
// Internal API (used by Box 1)
|
||
|
|
void* pool_refill_and_alloc(int class_idx);
|
||
|
|
|
||
|
|
// Backend interface
|
||
|
|
void* backend_batch_carve(int class_idx, int count);
|
||
|
|
|
||
|
|
#endif // POOL_REFILL_H
|