diff options
author | Brian Gianforcaro <b.gianfo@gmail.com> | 2020-08-09 14:58:50 -0700 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-08-10 12:52:15 +0200 |
commit | ecfe20efd255ca9e6d5c5e149a5cd7cbfca6704c (patch) | |
tree | 44f2d6ea7b4f9a98b1534808e1ca926ab8b700b4 /Kernel/Syscalls/sigaction.cpp | |
parent | fbb26b28b94f829cad645833636b562d821e291e (diff) | |
download | serenity-ecfe20efd255ca9e6d5c5e149a5cd7cbfca6704c.zip |
Kernel: Use Userspace<T> for the sigpending syscall
Diffstat (limited to 'Kernel/Syscalls/sigaction.cpp')
-rw-r--r-- | Kernel/Syscalls/sigaction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Syscalls/sigaction.cpp b/Kernel/Syscalls/sigaction.cpp index 26a28c83ee..70bceceecb 100644 --- a/Kernel/Syscalls/sigaction.cpp +++ b/Kernel/Syscalls/sigaction.cpp @@ -59,7 +59,7 @@ int Process::sys$sigprocmask(int how, Userspace<const sigset_t*> set, Userspace< return 0; } -int Process::sys$sigpending(sigset_t* set) +int Process::sys$sigpending(Userspace<sigset_t*> set) { REQUIRE_PROMISE(stdio); if (!validate_write_typed(set)) |