blob: 91e47af3e9c8e63fdec6033cd65456ea86814316 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#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
|