summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/getsid.c
blob: 4bb539cd2827facd07f1665b2a38b2bfdfabd45a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* vi: set sw=4 ts=4: */
/*
 * getsid() for uClibc
 *
 * Copyright (C) 2000-2004 by Erik Andersen <andersen@codepoet.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));
}