diff options
author | Ian Moffett <ian@osmora.org> | 2024-03-07 17:28:52 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-03-07 18:24:51 -0500 |
commit | f5e48e94a2f4d4bbd6e5628c7f2afafc6dbcc459 (patch) | |
tree | 93b156621dc0303816b37f60ba88051b702d92f6 /lib/mlibc/sysdeps/managarm/generic/memory.cpp | |
parent | bd5969fc876a10b18613302db7087ef3c40f18e1 (diff) |
build: Build mlibc + add distclean target
Signed-off-by: Ian Moffett <ian@osmora.org>
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 - |