mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-17 15:25:35 +00:00
Merge pull request #211 from michael-loki/mem_std_dead
remove dead mem_std file
This commit is contained in:
commit
d09d443515
@ -1,43 +0,0 @@
|
|||||||
#define NO_JEMALLOC
|
|
||||||
#include <mem.h>
|
|
||||||
#include <cstdlib>
|
|
||||||
#include <cstring>
|
|
||||||
|
|
||||||
struct llarp_alloc
|
|
||||||
{
|
|
||||||
void *(*alloc)(struct llarp_alloc *mem, size_t sz, size_t align);
|
|
||||||
void (*free)(struct llarp_alloc *mem, void *ptr);
|
|
||||||
};
|
|
||||||
|
|
||||||
namespace llarp
|
|
||||||
{
|
|
||||||
void *
|
|
||||||
std_malloc(struct llarp_alloc *mem, size_t sz, size_t align)
|
|
||||||
{
|
|
||||||
(void)mem;
|
|
||||||
(void)align;
|
|
||||||
void *ptr = malloc(sz);
|
|
||||||
if(ptr)
|
|
||||||
{
|
|
||||||
std::memset(ptr, 0, sz);
|
|
||||||
return ptr;
|
|
||||||
}
|
|
||||||
abort();
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
std_free(struct llarp_alloc *mem, void *ptr)
|
|
||||||
{
|
|
||||||
(void)mem;
|
|
||||||
if(ptr)
|
|
||||||
free(ptr);
|
|
||||||
}
|
|
||||||
|
|
||||||
} // namespace llarp
|
|
||||||
|
|
||||||
void
|
|
||||||
llarp_mem_stdlib(struct llarp_alloc *mem)
|
|
||||||
{
|
|
||||||
mem->alloc = llarp::std_malloc;
|
|
||||||
mem->free = llarp::std_free;
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user