mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 06:47:34 +00:00
LibCore: Add syscall wrapper for umount()
This commit is contained in:
parent
96d2c3a827
commit
2291ef6c3c
2 changed files with 10 additions and 0 deletions
|
@ -40,6 +40,7 @@ ErrorOr<int> recvfd(int sockfd, int options);
|
|||
ErrorOr<void> ptrace_peekbuf(pid_t tid, void const* tracee_addr, Bytes destination_buf);
|
||||
ErrorOr<void> setgroups(Span<gid_t const>);
|
||||
ErrorOr<void> mount(int source_fd, StringView target, StringView fs_type, int flags);
|
||||
ErrorOr<void> umount(StringView mount_point);
|
||||
ErrorOr<long> ptrace(int request, pid_t tid, void* address, void* data);
|
||||
ErrorOr<void> disown(pid_t pid);
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue