Update copyright dates with scripts/update-copyrights.
[glibc.git] / sysdeps / unix / sysv / linux / mmap64.c
bloba8da641d2b36d4e9fb098bab22652feea74a2b7f
1 /* Copyright (C) 1999-2015 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Jakub Jelinek <jakub@redhat.com>, 1999.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
19 #include <errno.h>
20 #include <unistd.h>
21 #include <sys/mman.h>
22 #include <string.h>
24 #include <sysdep.h>
25 #include <sys/syscall.h>
27 /* This is always 12, even on architectures where PAGE_SHIFT != 12. */
28 #if MMAP2_PAGE_SHIFT == -1
29 static int page_shift;
30 #else
31 # ifndef MMAP2_PAGE_SHIFT
32 # define MMAP2_PAGE_SHIFT 12
33 # endif
34 #define page_shift MMAP2_PAGE_SHIFT
35 #endif
38 void *
39 __mmap64 (void *addr, size_t len, int prot, int flags, int fd, off64_t offset)
41 #if MMAP2_PAGE_SHIFT == -1
42 if (page_shift == 0)
44 int page_size = __getpagesize ();
45 page_shift = __ffs (page_size) - 1;
47 #endif
48 if (offset & ((1 << page_shift) - 1))
50 __set_errno (EINVAL);
51 return MAP_FAILED;
53 void *result;
54 result = (void *)
55 INLINE_SYSCALL (mmap2, 6, addr,
56 len, prot, flags, fd,
57 (off_t) (offset >> page_shift));
58 return result;
60 weak_alias (__mmap64, mmap64)