1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:27:35 +00:00

Kernel: Use Userspace<T> for the sigprocmask syscall

This commit is contained in:
Brian Gianforcaro 2020-08-09 14:58:31 -07:00 committed by Andreas Kling
parent 431145148e
commit fbb26b28b9
2 changed files with 2 additions and 2 deletions

View file

@ -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();