diff options
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; \ |