mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-21 01:40:46 +00:00
LibCore: Add mknod() syscall wrapper
This commit is contained in:
parent
38472d7e02
commit
9fe1ebebdc
Notes:
sideshowbarker
2024-07-17 20:19:35 +09:00
Author: https://github.com/kennethmyhra
Commit: 9fe1ebebdc
Pull-request: https://github.com/SerenityOS/serenity/pull/11896
Reviewed-by: https://github.com/ADKaster
Reviewed-by: https://github.com/alimpfard
Reviewed-by: https://github.com/awesomekling
Reviewed-by: https://github.com/bgianfo ✅
Reviewed-by: https://github.com/linusg
2 changed files with 19 additions and 0 deletions
|
@ -135,4 +135,6 @@ ErrorOr<void> getsockname(int sockfd, struct sockaddr*, socklen_t*);
|
|||
ErrorOr<void> getpeername(int sockfd, struct sockaddr*, socklen_t*);
|
||||
ErrorOr<void> socketpair(int domain, int type, int protocol, int sv[2]);
|
||||
ErrorOr<Vector<gid_t>> getgroups();
|
||||
ErrorOr<void> mknod(StringView pathname, mode_t mode, dev_t dev);
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue