diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-12-10 20:35:58 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-12-10 20:35:58 +0000 |
commit | dce8f2b62af23b6ef9e89c3a54cfe002941ef6d6 (patch) | |
tree | a9becd75308609486c2e23f9572531fd12d415dc /linuxthreads | |
parent | 818d08de372d2bf075a9782e50ca8b6c1c1e589f (diff) | |
download | glibc-dce8f2b62af23b6ef9e89c3a54cfe002941ef6d6.tar.gz glibc-dce8f2b62af23b6ef9e89c3a54cfe002941ef6d6.tar.xz glibc-dce8f2b62af23b6ef9e89c3a54cfe002941ef6d6.zip |
Update.
2002-12-10 Jakub Jelinek <jakub@redhat.com> * include/libc-symbols.h: Fix a comment typo. * sysdeps/unix/sysv/linux/alpha/select.S (__libc_select): New alias. * sysdeps/unix/sysv/linux/alpha/sigsuspend.S (__libc_sigsuspend): Likewise. * sysdeps/unix/sysv/linux/ia64/sigsuspend.c (__libc_sigsuspend): Likewise. * sysdeps/unix/sysv/linux/s390/s390-64/sigsuspend.c (__libc_sigsuspend): Likewise. * sysdeps/unix/sysv/linux/sparc/sparc64/sigsuspend.c (__libc_sigsuspend): Likewise. * sysdeps/generic/creat.c (__libc_creat): Renamed from creat. (creat): New weak alias.
Diffstat (limited to 'linuxthreads')
-rw-r--r-- | linuxthreads/ChangeLog | 6 | ||||
-rw-r--r-- | linuxthreads/wrapsyscall.c | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index 989fbb66ea..a88297d10b 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -1,3 +1,9 @@ +2002-12-10 Ulrich Drepper <drepper@redhat.com> + + * wrapsyscall.c (CANCELABLE_SYSCALL): Don't define function as + weak. There is no reason for that. + (CANCELABLE_SYSCALL_VA): Likewise. + 2002-12-09 Ulrich Drepper <drepper@redhat.com> * wrapsyscall.c: Add wrappers for creat, poll, pselect, readv, select, diff --git a/linuxthreads/wrapsyscall.c b/linuxthreads/wrapsyscall.c index a475c4392d..4822ac503d 100644 --- a/linuxthreads/wrapsyscall.c +++ b/linuxthreads/wrapsyscall.c @@ -44,7 +44,6 @@ const int __pthread_provide_wrappers = 0; #define CANCELABLE_SYSCALL(res_type, name, param_list, params) \ extern res_type __libc_##name param_list; \ res_type \ -__attribute__ ((weak)) \ name param_list \ { \ res_type result; \ @@ -58,7 +57,6 @@ name param_list \ #define CANCELABLE_SYSCALL_VA(res_type, name, param_list, params, last_arg) \ res_type __libc_##name param_list; \ res_type \ -__attribute__ ((weak)) \ name param_list \ { \ res_type result; \ |