diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-07-29 11:35:37 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-08-05 04:38:56 -0400 |
commit | 182d6096fe76b3d63b1151090cd07e60eca39302 (patch) | |
tree | 93c589dd269c8ca2ada8e053a4e698533fca37b0 | |
parent | 3fad53ec87945e61015913f2d09271573504a1e9 (diff) | |
download | glibc-182d6096fe76b3d63b1151090cd07e60eca39302.zip glibc-182d6096fe76b3d63b1151090cd07e60eca39302.tar.gz glibc-182d6096fe76b3d63b1151090cd07e60eca39302.tar.bz2 |
mmap64: fix undef warnings
The only target that defines this is m68k, so move the existing fallback
define up to avoid warnings on other systems.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/mmap64.c | 6 |
2 files changed, 8 insertions, 3 deletions
@@ -1,5 +1,10 @@ 2015-08-05 Mike Frysinger <vapier@gentoo.org> + * sysdeps/unix/sysv/linux/mmap64.c: Move MMAP2_PAGE_SHIFT define + before first use. + +2015-08-05 Mike Frysinger <vapier@gentoo.org> + * nptl/allocatestack.c (allocate_stack): Move stacktop decl down to bottom and under _STACK_GROWS_DOWN. Move the stacktop assignment in there too. diff --git a/sysdeps/unix/sysv/linux/mmap64.c b/sysdeps/unix/sysv/linux/mmap64.c index a8da641..0b160b6 100644 --- a/sysdeps/unix/sysv/linux/mmap64.c +++ b/sysdeps/unix/sysv/linux/mmap64.c @@ -25,12 +25,12 @@ #include <sys/syscall.h> /* This is always 12, even on architectures where PAGE_SHIFT != 12. */ +#ifndef MMAP2_PAGE_SHIFT +# define MMAP2_PAGE_SHIFT 12 +#endif #if MMAP2_PAGE_SHIFT == -1 static int page_shift; #else -# ifndef MMAP2_PAGE_SHIFT -# define MMAP2_PAGE_SHIFT 12 -# endif #define page_shift MMAP2_PAGE_SHIFT #endif |