mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-10 01:59:31 +00:00
Kernel+LibC: Unify sys$open() and sys$openat()
The syscall is now called sys$open(), but it behaves like the old sys$openat(). In userspace, open_with_path_length() is made a wrapper over openat_with_path_length().
This commit is contained in:
parent
d6184afcae
commit
e0013a6b4c
Notes:
sideshowbarker
2024-07-19 10:01:25 +09:00
Author: https://github.com/bugaevc
Commit: e0013a6b4c
Pull-request: https://github.com/SerenityOS/serenity/pull/1079
Reviewed-by: https://github.com/awesomekling
4 changed files with 4 additions and 66 deletions
|
@ -145,7 +145,6 @@ public:
|
|||
pid_t sys$getppid();
|
||||
mode_t sys$umask(mode_t);
|
||||
int sys$open(const Syscall::SC_open_params*);
|
||||
int sys$openat(const Syscall::SC_openat_params*);
|
||||
int sys$close(int fd);
|
||||
ssize_t sys$read(int fd, u8*, ssize_t);
|
||||
ssize_t sys$write(int fd, const u8*, ssize_t);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue