mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 17:52:26 -05:00
99f3cc26c3
Specifically shm_open() and shm_unlink(). This patch just adds stubs.
43 lines
969 B
C++
43 lines
969 B
C++
#include <mman.h>
|
|
#include <errno.h>
|
|
#include <stdio.h>
|
|
#include <Kernel/Syscall.h>
|
|
|
|
extern "C" {
|
|
|
|
void* mmap(void* addr, size_t size, int prot, int flags, int fd, off_t offset)
|
|
{
|
|
Syscall::SC_mmap_params params { (dword)addr, size, prot, flags, fd, offset };
|
|
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 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_unlink, name);
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
}
|
|
|
|
}
|