mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-05 23:59:49 +00:00
Kernel: Use Userspace<T> for the sigpending syscall
This commit is contained in:
parent
fbb26b28b9
commit
ecfe20efd2
Notes:
sideshowbarker
2024-07-19 04:05:28 +09:00
Author: https://github.com/bgianfo
Commit: ecfe20efd2
Pull-request: https://github.com/SerenityOS/serenity/pull/3062
Reviewed-by: https://github.com/awesomekling
2 changed files with 2 additions and 2 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue