mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 07:28:11 +00:00
Kernel: Use Userspace<T> for the join_thread syscall
This commit is contained in:
parent
e8917cc5f3
commit
d3847b3489
2 changed files with 2 additions and 2 deletions
|
@ -117,7 +117,7 @@ int Process::sys$detach_thread(pid_t tid)
|
|||
return 0;
|
||||
}
|
||||
|
||||
int Process::sys$join_thread(pid_t tid, void** exit_value)
|
||||
int Process::sys$join_thread(pid_t tid, Userspace<void**> exit_value)
|
||||
{
|
||||
REQUIRE_PROMISE(thread);
|
||||
if (exit_value && !validate_write_typed(exit_value))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue