mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 07:07:34 +00:00
LibC: Implement getsid()
We've had a declaration, but not a definition.
This commit is contained in:
parent
a6e7797a31
commit
589bd0a7de
1 changed files with 6 additions and 0 deletions
|
@ -206,6 +206,12 @@ pid_t getppid()
|
||||||
return syscall(SC_getppid);
|
return syscall(SC_getppid);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pid_t getsid(pid_t pid)
|
||||||
|
{
|
||||||
|
int rc = syscall(SC_getsid, pid);
|
||||||
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
||||||
|
}
|
||||||
|
|
||||||
pid_t setsid()
|
pid_t setsid()
|
||||||
{
|
{
|
||||||
int rc = syscall(SC_setsid);
|
int rc = syscall(SC_setsid);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue