diff options
Diffstat (limited to 'lib/mlibc/sysdeps/managarm/generic/memory.cpp')
-rw-r--r-- | lib/mlibc/sysdeps/managarm/generic/memory.cpp | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/lib/mlibc/sysdeps/managarm/generic/memory.cpp b/lib/mlibc/sysdeps/managarm/generic/memory.cpp deleted file mode 100644 index 91e47af..0000000 --- a/lib/mlibc/sysdeps/managarm/generic/memory.cpp +++ /dev/null @@ -1,30 +0,0 @@ - -#include <string.h> - -#include <bits/ensure.h> -#include <mlibc/allocator.hpp> -#include <mlibc/all-sysdeps.hpp> -#include <protocols/posix/supercalls.hpp> - -#include <hel.h> -#include <hel-syscalls.h> - -namespace mlibc { - -int sys_anon_allocate(size_t size, void **pointer) { - // This implementation is inherently signal-safe. - __ensure(!(size & 0xFFF)); - HelWord out; - HEL_CHECK(helSyscall1_1(kHelCallSuper + posix::superAnonAllocate, size, &out)); - *pointer = reinterpret_cast<void *>(out); - return 0; -} - -int sys_anon_free(void *pointer, size_t size) { - // This implementation is inherently signal-safe. - HEL_CHECK(helSyscall2(kHelCallSuper + posix::superAnonDeallocate, (HelWord)pointer, size)); - return 0; -} - -} //namespace mlibc - |