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

@ -7,5 +7,7 @@
int32_t SYSCALL4(sys_vfsmount, mountpoint1, fstypestr1, devid1, format1);
int32_t SYSCALL1(sys_vfsunmount, mountpoint1);
int32_t SYSCALL1(sys_vfsavailmounts, availmounts1);
int32_t SYSCALL2(sys_vfsmountstat, statbuf1, label1);
#endif // SYSCALL_VFS_H_