blob: 437cd94ac140de89ecbb3f4c523c1fe8e5601b94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
* sched_getcpu() for uClibc
*
* Copyright (C) 2011 Bernhard Reutner-Fischer <uclibc@uclibc.org>
*
* Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
*/
#include <stdlib.h>
#include <errno.h>
#include <sched.h>
#include <sysdep.h>
#if defined __NR_getcpu
int
sched_getcpu (void)
{
unsigned int cpu;
int r = INLINE_SYSCALL (getcpu, 3, &cpu, NULL, NULL);
return r == -1 ? r : cpu;
}
#endif
|