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

UserspaceEmulator: Add the chdir syscall

This commit is contained in:
Andreas Kling 2020-08-07 18:44:51 +02:00
parent ee5e8081da
commit 5dce5fa7c2
2 changed files with 9 additions and 0 deletions

View file

@ -137,6 +137,7 @@ private:
void virt$exit(int);
ssize_t virt$getrandom(FlatPtr buffer, size_t buffer_size, unsigned int flags);
int virt$sleep(unsigned);
int virt$chdir(FlatPtr, size_t);
int virt$getpgrp();
int virt$getpgid(pid_t);
int virt$setpgid(pid_t pid, pid_t pgid);