UserspaceEmulator: Support the anon_create, sendfd and recvfd syscalls

This commit is contained in:
Andreas Kling 2021-01-15 14:17:19 +01:00
commit 12879184ce
Notes: sideshowbarker 2024-07-18 23:51:23 +09:00
2 changed files with 24 additions and 0 deletions

View file

@ -175,6 +175,9 @@ private:
int virt$beep();
int virt$ftruncate(int fd, off_t);
mode_t virt$umask(mode_t);
int virt$anon_create(size_t, int);
int virt$recvfd(int);
int virt$sendfd(int, int);
FlatPtr allocate_vm(size_t size, size_t alignment);
bool find_malloc_symbols(const MmapRegion& libc_text);