1
Fork 0
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:
Brian Gianforcaro 2020-08-09 15:45:39 -07:00 committed by Andreas Kling
parent e8917cc5f3
commit d3847b3489
2 changed files with 2 additions and 2 deletions

View file

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