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/wrapsyscall.c | |
parent | 818d08de372d2bf075a9782e50ca8b6c1c1e589f (diff) | |
download | glibc-dce8f2b62af23b6ef9e89c3a54cfe002941ef6d6.zip glibc-dce8f2b62af23b6ef9e89c3a54cfe002941ef6d6.tar.gz glibc-dce8f2b62af23b6ef9e89c3a54cfe002941ef6d6.tar.bz2 |
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/wrapsyscall.c')
-rw-r--r-- | linuxthreads/wrapsyscall.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/linuxthreads/wrapsyscall.c b/linuxthreads/wrapsyscall.c index a475c43..4822ac5 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; \ |