diff options
author | David Holsgrove <david.holsgrove@xilinx.com> | 2014-02-04 09:26:15 +1000 |
---|---|---|
committer | David Holsgrove <david.holsgrove@xilinx.com> | 2014-02-05 17:25:43 +1000 |
commit | 79b846ecc0275ceb02b5e2d3b03a34d7c43e6bf9 (patch) | |
tree | d44316fd6cbfae88cd848da86f59c390161f1f38 /ports/sysdeps | |
parent | e9043c0dfeeadffdb15eef6b235416307d718d97 (diff) | |
download | glibc-79b846ecc0275ceb02b5e2d3b03a34d7c43e6bf9.tar.gz glibc-79b846ecc0275ceb02b5e2d3b03a34d7c43e6bf9.tar.xz glibc-79b846ecc0275ceb02b5e2d3b03a34d7c43e6bf9.zip |
microblaze BZ #15705: Define MMAP2_PAGE_SHIFT
Define MMAP2_PAGE_SHIFT to -1 for microblaze so the correct shift for the syscall is determined dynamically using getpagesize ports/ChangeLog.microblaze 2014-02-04 David Holsgrove <david.holsgrove@xilinx.com> * sysdeps/unix/sysv/linux/microblaze/mmap64.c: New file. Signed-off-by: David Holsgrove <david.holsgrove@xilinx.com>
Diffstat (limited to 'ports/sysdeps')
-rw-r--r-- | ports/sysdeps/unix/sysv/linux/microblaze/mmap64.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ports/sysdeps/unix/sysv/linux/microblaze/mmap64.c b/ports/sysdeps/unix/sysv/linux/microblaze/mmap64.c new file mode 100644 index 0000000000..11a6bd8245 --- /dev/null +++ b/ports/sysdeps/unix/sysv/linux/microblaze/mmap64.c @@ -0,0 +1,4 @@ +/* Microblaze kernel has PAGE_SHIFT set to 12. + Determine the shift dynamically with getpagesize. */ +#define MMAP2_PAGE_SHIFT -1 +#include <sysdeps/unix/sysv/linux/mmap64.c> |