10 lines
219 B
C
10 lines
219 B
C
|
|
#ifndef POOL_TLS_REMOTE_H
|
||
|
|
#define POOL_TLS_REMOTE_H
|
||
|
|
|
||
|
|
#include <stdint.h>
|
||
|
|
|
||
|
|
int pool_remote_push(int class_idx, void* ptr, int owner_tid);
|
||
|
|
int pool_remote_pop_chain(int class_idx, int max_take, void** out_chain);
|
||
|
|
|
||
|
|
#endif
|