Define MMAP2_PAGE_SHIFT to -1 for m68k.

This commit is contained in:
Joseph Myers 2013-09-04 20:50:20 +00:00
parent b92a20b560
commit 2deb7bdb74
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2013-09-04 Joseph Myers <joseph@codesourcery.com>
* sysdeps/unix/sysv/linux/m68k/mmap64.c: New file.
2013-08-21 Ondřej Bílka <neleai@seznam.cz>
* sysdeps/m68k/m680x0/fpu/fraiseexcpt.c: Fix typos.

View File

@ -0,0 +1,5 @@
/* ColdFire and Sun 3 kernels have PAGE_SHIFT set to 13 and expect
mmap2 offset to be provided in 8K pages. Determine the shift
dynamically with getpagesize. */
#define MMAP2_PAGE_SHIFT -1
#include <sysdeps/unix/sysv/linux/mmap64.c>