mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
20 lines
376 B
C++
20 lines
376 B
C++
#include <jemalloc/jemalloc.h>
|
|
#include <llarp/mem.h>
|
|
|
|
namespace llarp {
|
|
static void *jem_malloc(size_t sz, size_t align) {
|
|
return mallocx(sz, MALLOCX_ALIGN(align));
|
|
}
|
|
|
|
static void jem_free(void *ptr) {
|
|
if (ptr) free(ptr);
|
|
}
|
|
} // namespace llarp
|
|
|
|
extern "C" {
|
|
void llarp_mem_jemalloc() {
|
|
llarp_g_mem.alloc = llarp::jem_malloc;
|
|
llarp_g_mem.free = llarp::jem_free;
|
|
}
|
|
}
|