mirror of
https://github.com/0Nera/BMOSP.git
synced 2024-11-25 18:09:38 +03:00
10 lines
283 B
C++
10 lines
283 B
C++
namespace mem {
|
|
void dump_memory( );
|
|
void init( );
|
|
void *alloc(size_t size);
|
|
void free(void *addr);
|
|
void *realloc(void *addr, size_t size);
|
|
void *frame_alloc(uint64_t wanted_frames);
|
|
void frame_free(void *ptr, uint64_t frames);
|
|
void *frame_calloc(uint64_t frames);
|
|
} // namespace mem
|