diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-07-14 07:23:50 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-07-14 07:23:50 +0000 |
commit | f218b5f57242863c36eae65d926d4ee545994351 (patch) | |
tree | b8864837a286aaeb3e6226f9c9a95cde8d387077 /linuxthreads/wrapsyscall.c | |
parent | ca3c01356495ebfbb315c2984dda8eba88467597 (diff) | |
download | glibc-f218b5f57242863c36eae65d926d4ee545994351.zip glibc-f218b5f57242863c36eae65d926d4ee545994351.tar.gz glibc-f218b5f57242863c36eae65d926d4ee545994351.tar.bz2 |
Update.
2000-07-14 Ulrich Drepper <drepper@redhat.com>
* sunrpc/xdr.c (xdr_u_long): Handle reading of unsigned long on
64-bit architecture correctly [PR libc/1794].
Diffstat (limited to 'linuxthreads/wrapsyscall.c')
-rw-r--r-- | linuxthreads/wrapsyscall.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/linuxthreads/wrapsyscall.c b/linuxthreads/wrapsyscall.c index 7d3f8ac..5563eb0 100644 --- a/linuxthreads/wrapsyscall.c +++ b/linuxthreads/wrapsyscall.c @@ -1,5 +1,5 @@ /* Wrapper arpund system calls to provide cancelation points. - Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc. + Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996. @@ -41,6 +41,7 @@ const int __pthread_provide_wrappers = 0; #define CANCELABLE_SYSCALL(res_type, name, param_list, params) \ res_type __libc_##name param_list; \ res_type \ +__attribute__ ((weak)) \ name param_list \ { \ res_type result; \ @@ -54,6 +55,7 @@ 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; \ |