svn commit: branches/uClibc_0_9_29/libc/sysdeps/linux/mips
vapier at uclibc.org
vapier at uclibc.org
Sat Jan 5 09:44:18 PST 2008
Author: vapier
Date: 2008-01-05 09:44:17 -0800 (Sat, 05 Jan 2008)
New Revision: 20777
Log:
Merge r20151 by aldot from trunk:
- Fix compilation for mips ABI64 with no LFS.
This wants a stub_enosys(readahead) line later on, like many, many others need..
Modified:
branches/uClibc_0_9_29/libc/sysdeps/linux/mips/readahead.c
Changeset:
Modified: branches/uClibc_0_9_29/libc/sysdeps/linux/mips/readahead.c
===================================================================
--- branches/uClibc_0_9_29/libc/sysdeps/linux/mips/readahead.c 2008-01-05 17:44:01 UTC (rev 20776)
+++ branches/uClibc_0_9_29/libc/sysdeps/linux/mips/readahead.c 2008-01-05 17:44:17 UTC (rev 20777)
@@ -22,17 +22,20 @@
#include <sys/types.h>
#include <sys/syscall.h>
-#ifdef __NR_readahead
+#ifdef __UCLIBC_HAS_LFS__
+#include <_lfs_64.h>
+# ifdef __NR_readahead
ssize_t readahead(int fd, off64_t offset, size_t count)
{
-# if _MIPS_SIM == _ABIO32
+# if _MIPS_SIM == _ABIO32
return INLINE_SYSCALL (readahead, 5, fd, 0,
__LONG_LONG_PAIR ((off_t) (offset >> 32), (off_t) offset),
count);
-# else /* N32 || N64 */
+# else /* N32 || N64 */
return INLINE_SYSCALL (readahead, 3, fd, offset, count);
-# endif
+# endif
}
+# endif
#endif
More information about the uClibc-cvs
mailing list