1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:37:35 +00:00

UserspaceEmulator: Add the get_dir_entries() syscall + an ioctl() stub

This commit is contained in:
Andreas Kling 2020-07-18 17:36:31 +02:00
parent e4b068aec5
commit a49c794725
2 changed files with 25 additions and 0 deletions

View file

@ -68,6 +68,8 @@ private:
void setup_stack(const Vector<String>& arguments);
int virt$get_dir_entries(int fd, FlatPtr buffer, ssize_t);
int virt$ioctl(int fd, unsigned, FlatPtr);
int virt$usleep(useconds_t);
int virt$shbuf_create(int size, FlatPtr buffer);
int virt$shbuf_allow_pid(int, pid_t peer_pid);