mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2024-10-01 01:36:01 -04:00
14 lines
357 B
C
14 lines
357 B
C
#ifndef MEMORY_H
|
|
#define MEMORY_H
|
|
|
|
#include <stddef.h>
|
|
|
|
void *memory_map(size_t size);
|
|
int memory_map_fixed(void *ptr, size_t size);
|
|
int memory_unmap(void *ptr, size_t size);
|
|
int memory_protect_rw(void *ptr, size_t size);
|
|
int memory_protect_ro(void *ptr, size_t size);
|
|
int memory_remap_fixed(void *old, size_t old_size, void *new, size_t new_size);
|
|
|
|
#endif
|