(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
[glibc.git] / sysdeps / unix / sysv / linux / sched_setaffinity.c
blob5b1b8ee8787dd70841696e04870800b8a661cdb5
1 /* Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17 02111-1307 USA. */
19 #include <errno.h>
20 #include <sched.h>
21 #include <string.h>
22 #include <sysdep.h>
23 #include <unistd.h>
24 #include <sys/types.h>
25 #include <shlib-compat.h>
26 #include <alloca.h>
29 #ifdef __NR_sched_setaffinity
30 static size_t __kernel_cpumask_size;
33 int
34 __sched_setaffinity_new (pid_t pid, size_t cpusetsize, const cpu_set_t *cpuset)
36 if (__builtin_expect (__kernel_cpumask_size == 0, 0))
38 INTERNAL_SYSCALL_DECL (err);
39 int res;
41 size_t psize = 128;
42 void *p = alloca (psize);
44 while (res = INTERNAL_SYSCALL (sched_getaffinity, err, 3, getpid (),
45 psize, p),
46 INTERNAL_SYSCALL_ERROR_P (res, err)
47 && INTERNAL_SYSCALL_ERRNO (res, err) == EINVAL)
48 p = extend_alloca (p, psize, 2 * psize);
50 if (res == 0 || INTERNAL_SYSCALL_ERROR_P (res, err))
52 __set_errno (INTERNAL_SYSCALL_ERRNO (res, err));
53 return -1;
56 __kernel_cpumask_size = res;
59 /* We now know the size of the kernel cpumask_t. Make sure the user
60 does not request to set a bit beyond that. */
61 for (size_t cnt = __kernel_cpumask_size; cnt < cpusetsize; ++cnt)
62 if (((char *) cpuset)[cnt] != '\0')
64 /* Found a nonzero byte. This means the user request cannot be
65 fulfilled. */
66 __set_errno (EINVAL);
67 return -1;
70 return INLINE_SYSCALL (sched_setaffinity, 3, pid, cpusetsize, cpuset);
72 versioned_symbol (libc, __sched_setaffinity_new, sched_setaffinity,
73 GLIBC_2_3_4);
76 # if SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)
77 int
78 attribute_compat_text_section
79 __sched_setaffinity_old (pid_t pid, const cpu_set_t *cpuset)
81 /* The old interface by default assumed a 1024 processor bitmap. */
82 return __sched_setaffinity_new (pid, 128, cpuset);
84 compat_symbol (libc, __sched_setaffinity_old, sched_setaffinity, GLIBC_2_3_3);
85 # endif
86 #else
87 # include <sysdeps/generic/sched_setaffinity.c>
88 #endif