
It's now possible to get purgeable memory by using mmap(MAP_PURGEABLE). Purgeable memory has a "volatile" flag that can be set using madvise(): - madvise(..., MADV_SET_VOLATILE) - madvise(..., MADV_SET_NONVOLATILE) When in the "volatile" state, the kernel may take away the underlying physical memory pages at any time, without notifying the owner. This gives you a guilt discount when caching very large things. :^) Setting a purgeable region to non-volatile will return whether or not the memory has been taken away by the kernel while being volatile. Basically, if madvise(..., MADV_SET_NONVOLATILE) returns 1, that means the memory was purged while volatile, and whatever was in that piece of memory needs to be reconstructed before use.
66 lines
1.6 KiB
C++
66 lines
1.6 KiB
C++
#include <Kernel/Syscall.h>
|
|
#include <errno.h>
|
|
#include <mman.h>
|
|
#include <stdio.h>
|
|
|
|
extern "C" {
|
|
|
|
void* mmap(void* addr, size_t size, int prot, int flags, int fd, off_t offset)
|
|
{
|
|
Syscall::SC_mmap_params params { (u32)addr, size, prot, flags, fd, offset, nullptr };
|
|
int rc = syscall(SC_mmap, ¶ms);
|
|
if (rc < 0 && -rc < EMAXERRNO) {
|
|
errno = -rc;
|
|
return (void*)-1;
|
|
}
|
|
return (void*)rc;
|
|
}
|
|
|
|
void* mmap_with_name(void* addr, size_t size, int prot, int flags, int fd, off_t offset, const char* name)
|
|
{
|
|
Syscall::SC_mmap_params params { (u32)addr, size, prot, flags, fd, offset, name };
|
|
int rc = syscall(SC_mmap, ¶ms);
|
|
if (rc < 0 && -rc < EMAXERRNO) {
|
|
errno = -rc;
|
|
return (void*)-1;
|
|
}
|
|
return (void*)rc;
|
|
}
|
|
|
|
int munmap(void* addr, size_t size)
|
|
{
|
|
int rc = syscall(SC_munmap, addr, size);
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
}
|
|
|
|
int mprotect(void* addr, size_t size, int prot)
|
|
{
|
|
int rc = syscall(SC_mprotect, addr, size, prot);
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
}
|
|
|
|
int set_mmap_name(void* addr, size_t size, const char* name)
|
|
{
|
|
int rc = syscall(SC_set_mmap_name, addr, size, name);
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
}
|
|
|
|
int shm_open(const char* name, int flags, mode_t mode)
|
|
{
|
|
int rc = syscall(SC_shm_open, name, flags, mode);
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
}
|
|
|
|
int shm_unlink(const char* name)
|
|
{
|
|
int rc = syscall(SC_shm_unlink, name);
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
}
|
|
|
|
int madvise(void* address, size_t size, int advice)
|
|
{
|
|
int rc = syscall(SC_madvise, address, size, advice);
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
}
|
|
|
|
}
|