svn commit: trunk/uClibc/libc/sysdeps/linux/mips
aldot at uclibc.org
aldot at uclibc.org
Sun Sep 30 12:29:23 PDT 2007
Author: aldot
Date: 2007-09-30 12:29:19 -0700 (Sun, 30 Sep 2007)
New Revision: 20151
Log:
- Fix compilation for mips ABI64 with no LFS.
This wants a stub_enosys(readahead) line later on, like many, many others need..
Modified:
trunk/uClibc/libc/sysdeps/linux/mips/readahead.c
Changeset:
Modified: trunk/uClibc/libc/sysdeps/linux/mips/readahead.c
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/mips/readahead.c 2007-09-30 18:06:32 UTC (rev 20150)
+++ trunk/uClibc/libc/sysdeps/linux/mips/readahead.c 2007-09-30 19:29:19 UTC (rev 20151)
@@ -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