]> pilppa.org Git - familiar-h63xx-build.git/blob - org.handhelds.familiar/packages/glibc/glibc-2.2.5/glibc-2.2.5-arm-pwrite64.patch
OE tree imported from monotone branch org.openembedded.oz354fam083 at revision 8b12e3...
[familiar-h63xx-build.git] / org.handhelds.familiar / packages / glibc / glibc-2.2.5 / glibc-2.2.5-arm-pwrite64.patch
1
2 #
3 # Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher
4 #
5
6 --- glibc-2.2.5/sysdeps/unix/sysv/linux/arm/sysdep.h~glibc-2.2.5-arm-pwrite64.patch     2004-09-03 19:00:37.000000000 -0500
7 +++ glibc-2.2.5/sysdeps/unix/sysv/linux/arm/sysdep.h    2004-09-03 19:00:38.000000000 -0500
8 @@ -32,6 +32,15 @@
9  #define SWI_BASE  (0x900000)
10  #define SYS_ify(syscall_name)  (__NR_##syscall_name)
11  
12 +/* This is a kludge to make syscalls.list find these under the names
13 +   pread and pwrite, since some kernel headers define those names
14 +   and some define the *64 names for the same system calls.  */
15 +#if !defined __NR_pread && defined __NR_pread64
16 +# define __NR_pread __NR_pread64
17 +#endif
18 +#if !defined __NR_pwrite && defined __NR_pwrite64
19 +# define __NR_pwrite __NR_pwrite64
20 +#endif
21  
22  #ifdef __ASSEMBLER__
23