From fbb26b28b94f829cad645833636b562d821e291e Mon Sep 17 00:00:00 2001 From: Brian Gianforcaro Date: Sun, 9 Aug 2020 14:58:31 -0700 Subject: Kernel: Use Userspace for the sigprocmask syscall --- Kernel/Syscalls/sigaction.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Kernel/Syscalls') 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 set, Userspace old_set) { REQUIRE_PROMISE(sigaction); auto current_thread = Thread::current(); -- cgit v1.2.3