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
25 #include <sys/types.h>
26 #include <shlib-compat.h>
30 #ifdef __NR_sched_setaffinity
31 static size_t __kernel_cpumask_size
;
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
);
43 void *p
= alloca (psize
);
45 while (res
= INTERNAL_SYSCALL (sched_getaffinity
, err
, 3, getpid (),
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
));
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
71 int result
= INLINE_SYSCALL (sched_setaffinity
, 3, pid
, cpusetsize
, cpuset
);
73 #ifdef RESET_VGETCPU_CACHE
75 RESET_VGETCPU_CACHE ();
80 versioned_symbol (libc
, __sched_setaffinity_new
, sched_setaffinity
,
84 # if SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)
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
);
95 # include <posix/sched_setaffinity.c>