mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 15:20:10 +00:00
Update.
2004-03-29 Alexandre Oliva <aoliva@redhat.com> * sysdeps/unix/sysv/linux/sched_getaffinity.c: Prepend GLIBC_ to version names is SHLIB_COMPAT check. * sysdeps/unix/sysv/linux/sched_setaffinity.c: Likewise.
This commit is contained in:
parent
0dde8ba5ec
commit
8e32efa63f
@ -1,3 +1,9 @@
|
||||
2004-03-29 Alexandre Oliva <aoliva@redhat.com>
|
||||
|
||||
* sysdeps/unix/sysv/linux/sched_getaffinity.c: Prepend GLIBC_ to
|
||||
version names is SHLIB_COMPAT check.
|
||||
* sysdeps/unix/sysv/linux/sched_setaffinity.c: Likewise.
|
||||
|
||||
2004-03-29 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* nis/nss_nis/nis-rpc.c (saveit): Improve memory handling. No need to
|
||||
|
@ -1,3 +1,15 @@
|
||||
2004-03-29 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* sysdeps/unix/sysv/linux/pthread_attr_setaffinity.c
|
||||
(__pthread_attr_setaffinity_old): Prepend GLIBC_ to version names
|
||||
is SHLIB_COMPAT check.
|
||||
* sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c
|
||||
(__pthread_attr_getaffinity_old): Likewise.
|
||||
* sysdeps/unix/sysv/linux/pthread_getaffinity.c
|
||||
(__pthread_getaffinity_old): Likewise.
|
||||
* sysdeps/unix/sysv/linux/pthread_setaffinity.c
|
||||
(__pthread_setaffinity_old): Likewise.
|
||||
|
||||
2004-03-26 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* allocatestack.c (_make_stacks_executable): Call
|
||||
|
@ -57,7 +57,7 @@ versioned_symbol (libpthread, __pthread_attr_getaffinity_new,
|
||||
pthread_attr_getaffinity_np, GLIBC_2_3_4);
|
||||
|
||||
|
||||
#if SHLIB_COMPAT(libpthread, 2_3_3, 2_3_4)
|
||||
#if SHLIB_COMPAT (libpthread, GLIBC_2_3_3, GLIBC_2_3_4)
|
||||
int
|
||||
__pthread_attr_getaffinity_old (const pthread_attr_t *attr, cpu_set_t *cpuset)
|
||||
{
|
||||
|
@ -83,7 +83,7 @@ versioned_symbol (libpthread, __pthread_attr_setaffinity_new,
|
||||
pthread_attr_setaffinity_np, GLIBC_2_3_4);
|
||||
|
||||
|
||||
#if SHLIB_COMPAT(libpthread, 2_3_3, 2_3_4)
|
||||
#if SHLIB_COMPAT (libpthread, GLIBC_2_3_3, GLIBC_2_3_4)
|
||||
int
|
||||
__pthread_attr_setaffinity_old (pthread_attr_t *attr, cpu_set_t *cpuset)
|
||||
{
|
||||
|
@ -48,7 +48,7 @@ versioned_symbol (libpthread, __pthread_getaffinity_new,
|
||||
pthread_getaffinity_np, GLIBC_2_3_4);
|
||||
|
||||
|
||||
#if SHLIB_COMPAT(libpthread, 2_3_3, 2_3_4)
|
||||
#if SHLIB_COMPAT (libpthread, GLIBC_2_3_3, GLIBC_2_3_4)
|
||||
int
|
||||
__pthread_getaffinity_old (pthread_t th, cpu_set_t *cpuset)
|
||||
{
|
||||
|
@ -87,7 +87,7 @@ versioned_symbol (libpthread, __pthread_setaffinity_new,
|
||||
pthread_setaffinity_np, GLIBC_2_3_4);
|
||||
|
||||
|
||||
#if SHLIB_COMPAT(libpthread, 2_3_3, 2_3_4)
|
||||
#if SHLIB_COMPAT (libpthread, GLIBC_2_3_3, GLIBC_2_3_4)
|
||||
int
|
||||
__pthread_setaffinity_old (pthread_t th, cpu_set_t *cpuset)
|
||||
{
|
||||
|
@ -43,7 +43,7 @@ versioned_symbol (libc, __sched_getaffinity_new, sched_getaffinity,
|
||||
GLIBC_2_3_4);
|
||||
|
||||
|
||||
# if SHLIB_COMPAT(libc, 2_3_3, 2_3_4)
|
||||
# if SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)
|
||||
int
|
||||
attribute_compat_text_section
|
||||
__sched_getaffinity_old (pid_t pid, cpu_set_t *cpuset)
|
||||
|
@ -70,7 +70,7 @@ versioned_symbol (libc, __sched_setaffinity_new, sched_setaffinity,
|
||||
GLIBC_2_3_4);
|
||||
|
||||
|
||||
# if SHLIB_COMPAT(libc, 2_3_3, 2_3_4)
|
||||
# if SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)
|
||||
int
|
||||
attribute_compat_text_section
|
||||
__sched_setaffinity_old (pid_t pid, const cpu_set_t *cpuset)
|
||||
|
Loading…
Reference in New Issue
Block a user