1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
2004-03-20  Andreas Jaeger  <aj@suse.de>

	* sysdeps/unix/sysv/linux/sched_getaffinity.c
	(__sched_getaffinity_old): Fix interface.
	* sysdeps/unix/sysv/linux/sched_setaffinity.c
	(__sched_setaffinity_old): Likewise.

	* sysdeps/unix/sysv/linux/sched_setaffinity.c: Include <alloca.h>.
This commit is contained in:
Andreas Jaeger
2004-03-20 06:43:04 +00:00
parent 770c415706
commit e4871eb8db
2 changed files with 12 additions and 2 deletions

View File

@ -1,3 +1,12 @@
2004-03-20 Andreas Jaeger <aj@suse.de>
* sysdeps/unix/sysv/linux/sched_getaffinity.c
(__sched_getaffinity_old): Fix interface.
* sysdeps/unix/sysv/linux/sched_setaffinity.c
(__sched_setaffinity_old): Likewise.
* sysdeps/unix/sysv/linux/sched_setaffinity.c: Include <alloca.h>.
2004-03-17 Kaz Kojima <kkojima@rr.iij4u.or.jp>
* sysdeps/unix/sysv/linux/kernel-features.h

View File

@ -23,6 +23,7 @@
#include <unistd.h>
#include <sys/types.h>
#include <shlib-compat.h>
#include <alloca.h>
#ifdef __NR_sched_setaffinity
@ -72,10 +73,10 @@ versioned_symbol (libc, __sched_setaffinity_new, sched_setaffinity,
# if SHLIB_COMPAT(libc, 2_3_3, 2_3_4)
int
attribute_compat_text_section
__sched_setaffinity_old (const pthread_attr_t *attr, const cpu_set_t *cpuset)
__sched_setaffinity_old (pid_t pid, const cpu_set_t *cpuset)
{
/* The old interface by default assumed a 1024 processor bitmap. */
return __sched_setaffinity_new (attr, 128, cpuset);
return __sched_setaffinity_new (pid, 128, cpuset);
}
compat_symbol (libc, __sched_setaffinity_old, sched_setaffinity, GLIBC_2_3_3);
# endif