diff options
Diffstat (limited to 'libc/sysdeps/linux/common/getsid.c')
-rw-r--r-- | libc/sysdeps/linux/common/getsid.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/getsid.c b/libc/sysdeps/linux/common/getsid.c new file mode 100644 index 000000000..a0790285e --- /dev/null +++ b/libc/sysdeps/linux/common/getsid.c @@ -0,0 +1,19 @@ +/* vi: set sw=4 ts=4: */ +/* + * getsid() for uClibc + * + * Copyright (C) 2000-2004 by Erik Andersen <andersen@codpoet.org> + * + * GNU Library General Public License (LGPL) version 2 or later. + */ + +#include "syscalls.h" +#include <unistd.h> + +#define __NR___syscall_getsid __NR_getsid +static inline _syscall1(__kernel_pid_t, __syscall_getsid, __kernel_pid_t, pid); + +pid_t getsid(pid_t pid) +{ + return (__syscall_getsid(pid)); +} |