1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:27:43 +00:00

UserspaceEmulator: Stub out virt$msyscall()

This is a no-op inside UE for now.
This commit is contained in:
Andreas Kling 2021-02-06 22:56:00 +01:00
parent b97d23a71f
commit 9dacd7c0ec
2 changed files with 10 additions and 0 deletions

View file

@ -172,6 +172,7 @@ private:
int virt$anon_create(size_t, int);
int virt$recvfd(int);
int virt$sendfd(int, int);
int virt$msyscall(FlatPtr);
FlatPtr allocate_vm(size_t size, size_t alignment);
bool find_malloc_symbols(const MmapRegion& libc_text);