diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-05-31 08:22:35 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-05-31 08:22:35 +0000 |
commit | 8daa5a586a8daef3af754328ee84d4079750dc56 (patch) | |
tree | f35e54afc19001976ce0b23e231aeda49e5be347 /libc/sysdeps/linux/mips/Makefile.arch | |
parent | 2b178f6024cd7698ff0330d57622de592c86712b (diff) |
Atsushi Nemoto writes:
Current MIPS readahead(), posix_fadvise(), posix_fadvise64() do not
match with kernel on all ABIs.
On O32 ABI, a padding is needed before a long long argument.
On N32/N64, a long long argument should be passed via a single register.
Diffstat (limited to 'libc/sysdeps/linux/mips/Makefile.arch')
-rw-r--r-- | libc/sysdeps/linux/mips/Makefile.arch | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/mips/Makefile.arch b/libc/sysdeps/linux/mips/Makefile.arch index c79aee8ca..da5ca1e0f 100644 --- a/libc/sysdeps/linux/mips/Makefile.arch +++ b/libc/sysdeps/linux/mips/Makefile.arch @@ -7,7 +7,8 @@ CSRC := \ __longjmp.c brk.c setjmp_aux.c mmap.c __syscall_error.c \ - cacheflush.c pread_write.c sysmips.c _test_and_set.c sigaction.c + cacheflush.c pread_write.c sysmips.c _test_and_set.c sigaction.c \ + readahead.c posix_fadvise.c posix_fadvise64.c SSRC := bsd-_setjmp.S bsd-setjmp.S setjmp.S clone.S syscall.S pipe.S |