2.9
[glibc/nacl-glibc.git] / sysdeps / unix / sysv / linux / sched_setaffinity.c
blob77cde476921b8b41e7bbe13ff4414361e492168e
1 /* Copyright (C) 2002, 2003, 2004, 2005, 2007
2 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
20 #include <errno.h>
21 #include <sched.h>
22 #include <string.h>
23 #include <sysdep.h>
24 #include <unistd.h>
25 #include <sys/types.h>
26 #include <shlib-compat.h>
27 #include <alloca.h>
30 #ifdef __NR_sched_setaffinity
31 static size_t __kernel_cpumask_size;
34 int
35 __sched_setaffinity_new (pid_t pid, size_t cpusetsize, const cpu_set_t *cpuset)
37 if (__builtin_expect (__kernel_cpumask_size == 0, 0))
39 INTERNAL_SYSCALL_DECL (err);
40 int res;
42 size_t psize = 128;
43 void *p = alloca (psize);
45 while (res = INTERNAL_SYSCALL (sched_getaffinity, err, 3, getpid (),
46 psize, p),
47 INTERNAL_SYSCALL_ERROR_P (res, err)
48 && INTERNAL_SYSCALL_ERRNO (res, err) == EINVAL)
49 p = extend_alloca (p, psize, 2 * psize);
51 if (res == 0 || INTERNAL_SYSCALL_ERROR_P (res, err))
53 __set_errno (INTERNAL_SYSCALL_ERRNO (res, err));
54 return -1;
57 __kernel_cpumask_size = res;
60 /* We now know the size of the kernel cpumask_t. Make sure the user
61 does not request to set a bit beyond that. */
62 for (size_t cnt = __kernel_cpumask_size; cnt < cpusetsize; ++cnt)
63 if (((char *) cpuset)[cnt] != '\0')
65 /* Found a nonzero byte. This means the user request cannot be
66 fulfilled. */
67 __set_errno (EINVAL);
68 return -1;
71 int result = INLINE_SYSCALL (sched_setaffinity, 3, pid, cpusetsize, cpuset);
73 #ifdef RESET_VGETCPU_CACHE
74 if (result != -1)
75 RESET_VGETCPU_CACHE ();
76 #endif
78 return result;
80 versioned_symbol (libc, __sched_setaffinity_new, sched_setaffinity,
81 GLIBC_2_3_4);
84 # if SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)
85 int
86 attribute_compat_text_section
87 __sched_setaffinity_old (pid_t pid, const cpu_set_t *cpuset)
89 /* The old interface by default assumed a 1024 processor bitmap. */
90 return __sched_setaffinity_new (pid, 128, cpuset);
92 compat_symbol (libc, __sched_setaffinity_old, sched_setaffinity, GLIBC_2_3_3);
93 # endif
94 #else
95 # include <posix/sched_setaffinity.c>
96 #endif