Files
hakmem/core/pool_tls_remote.h

10 lines
219 B
C
Raw Normal View History

#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