New syscalls vfsavailmounts() and vfsmountstat() to get info about current VFS mountpoints

This commit is contained in:
2025-11-04 00:24:58 +01:00
parent 9612e7961e
commit 88ac5cf877
5 changed files with 79 additions and 0 deletions

View File

@ -32,6 +32,8 @@ SyscallFn SYSCALL_TABLE[SYSCALLS_MAX] = {
[SYS_VFSMOUNT] = &sys_vfsmount,
[SYS_VFSUNMOUNT] = &sys_vfsunmount,
[SYS_VFSAVAILMOUNTS] = &sys_vfsavailmounts,
[SYS_VFSMOUNTSTAT] = &sys_vfsmountstat,
[SYS_IPC_PIPEREAD] = &sys_ipc_piperead,
[SYS_IPC_PIPEWRITE] = &sys_ipc_pipewrite,