summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/sched_getscheduler.c
blob: e657abd77153a108946b813a2661b3889b557ec9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* vi: set sw=4 ts=4: */
/*
 * sched_getscheduler() for uClibc
 *
 * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
 *
 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
 */

#include <sched.h>
#include <sys/types.h>
#include <sys/syscall.h>

#define __NR___syscall_sched_getscheduler __NR_sched_getscheduler
static __inline__ _syscall1(int, __syscall_sched_getscheduler, __kernel_pid_t, pid)

int sched_getscheduler(pid_t pid)
{
	return (__syscall_sched_getscheduler(pid));
}