mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
29 lines
555 B
C
29 lines
555 B
C
#ifndef LLARP_MEM_H_
|
|
#define LLARP_MEM_H_
|
|
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct llarp_alloc {
|
|
void * impl;
|
|
void *(*alloc)(struct llarp_alloc * mem, size_t sz, size_t align);
|
|
void (*free)(struct llarp_alloc * mem, void *ptr);
|
|
};
|
|
|
|
void llarp_mem_stdlib(struct llarp_alloc * mem);
|
|
void llarp_mem_jemalloc(struct llarp_alloc * mem);
|
|
void llarp_mem_dmalloc(struct llarp_alloc * mem);
|
|
|
|
void llarp_mem_slab(struct llarp_alloc * mem, uint32_t * buf, size_t sz);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|