mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2025-07-29 18:08:35 -04:00
avoid trying to use mremap outside of Linux
This commit is contained in:
parent
934ab4cb59
commit
a32e26b8e9
3 changed files with 10 additions and 0 deletions
6
memory.h
6
memory.h
|
@ -3,6 +3,10 @@
|
|||
|
||||
#include <stddef.h>
|
||||
|
||||
#ifdef __linux__
|
||||
#define HAVE_COMPATIBLE_MREMAP
|
||||
#endif
|
||||
|
||||
int get_metadata_key(void);
|
||||
|
||||
void *memory_map(size_t size);
|
||||
|
@ -11,8 +15,10 @@ int memory_unmap(void *ptr, size_t size);
|
|||
int memory_protect_ro(void *ptr, size_t size);
|
||||
int memory_protect_rw(void *ptr, size_t size);
|
||||
int memory_protect_rw_metadata(void *ptr, size_t size);
|
||||
#ifdef HAVE_COMPATIBLE_MREMAP
|
||||
int memory_remap(void *old, size_t old_size, size_t new_size);
|
||||
int memory_remap_fixed(void *old, size_t old_size, void *new, size_t new_size);
|
||||
#endif
|
||||
void memory_set_name(void *ptr, size_t size, const char *name);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue