diff options
author | Brian Gianforcaro <b.gianfo@gmail.com> | 2020-08-09 14:58:31 -0700 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-08-10 12:52:15 +0200 |
commit | fbb26b28b94f829cad645833636b562d821e291e (patch) | |
tree | 27fab6f932e6fde51f07025fb71313cadde167b6 /Kernel/Syscalls | |
parent | 431145148ef2a9141cf176276c89774e0f4eea40 (diff) | |
download | serenity-fbb26b28b94f829cad645833636b562d821e291e.zip |
Kernel: Use Userspace<T> for the sigprocmask syscall
Diffstat (limited to 'Kernel/Syscalls')
-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 c0d2b697c2..26a28c83ee 100644 --- a/Kernel/Syscalls/sigaction.cpp +++ b/Kernel/Syscalls/sigaction.cpp @@ -28,7 +28,7 @@ namespace Kernel { -int Process::sys$sigprocmask(int how, const sigset_t* set, sigset_t* old_set) +int Process::sys$sigprocmask(int how, Userspace<const sigset_t*> set, Userspace<sigset_t*> old_set) { REQUIRE_PROMISE(sigaction); auto current_thread = Thread::current(); |