implement sys_fchdir

This commit is contained in:
ootinnyoo
2025-12-22 18:34:22 -05:00
parent 1dd1811f34
commit 8f00af7587
8 changed files with 95 additions and 19 deletions

View File

@@ -50,7 +50,7 @@
| 0x2f (47) | fallocate | (int fd, int mode, loff_t offset, loff_t len) | __arm64_sys_fallocate | false |
| 0x30 (48) | faccessat | (int dfd, const char *filename, int mode) | __arm64_sys_faccessat | true |
| 0x31 (49) | chdir | (const char *filename) | __arm64_sys_chdir | true |
| 0x32 (50) | fchdir | (unsigned int fd) | __arm64_sys_fchdir | false |
| 0x32 (50) | fchdir | (unsigned int fd) | __arm64_sys_fchdir | true |
| 0x33 (51) | chroot | (const char *filename) | __arm64_sys_chroot | true |
| 0x34 (52) | fchmod | (unsigned int fd, umode_t mode) | __arm64_sys_fchmod | false |
| 0x35 (53) | fchmodat | (int dfd, const char *filename, umode_t mode) | __arm64_sys_fchmodat | false |