mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:38:11 +00:00
Kernel: Convert some more syscalls to Userspace<T>
These are really straightforward when all the helpers just work.
This commit is contained in:
parent
9bcf0b70cb
commit
e526fa572a
4 changed files with 6 additions and 6 deletions
|
@ -30,7 +30,7 @@
|
|||
|
||||
namespace Kernel {
|
||||
|
||||
int Process::sys$access(const char* user_path, size_t path_length, int mode)
|
||||
int Process::sys$access(Userspace<const char*> user_path, size_t path_length, int mode)
|
||||
{
|
||||
REQUIRE_PROMISE(rpath);
|
||||
auto path = get_syscall_path_argument(user_path, path_length);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue