2003-03-03 09:58:55 +00:00
|
|
|
/* Definitions for POSIX memory map interface. Linux/HPPA version.
|
2022-01-01 18:54:23 +00:00
|
|
|
Copyright (C) 1997-2022 Free Software Foundation, Inc.
|
2003-03-03 09:58:55 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-03-09 23:56:38 +00:00
|
|
|
License along with the GNU C Library. If not, see
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
2000-10-15 03:29:27 +00:00
|
|
|
|
|
|
|
#ifndef _SYS_MMAN_H
|
|
|
|
# error "Never use <bits/mman.h> directly; include <sys/mman.h> instead."
|
|
|
|
#endif
|
|
|
|
|
2006-09-07 16:34:43 +00:00
|
|
|
/* These are taken from the kernel definitions. */
|
2000-10-15 03:29:27 +00:00
|
|
|
|
2006-09-07 16:34:43 +00:00
|
|
|
/* Other flags. */
|
2018-10-04 19:47:23 +00:00
|
|
|
#define __MAP_ANONYMOUS 0x10 /* Don't use a file */
|
2006-09-07 16:34:43 +00:00
|
|
|
#ifdef __USE_MISC
|
|
|
|
# define MAP_VARIABLE 0
|
|
|
|
#endif
|
2000-10-15 03:29:27 +00:00
|
|
|
|
2006-09-07 16:34:43 +00:00
|
|
|
/* These are Linux-specific. */
|
|
|
|
#ifdef __USE_MISC
|
|
|
|
# define MAP_DENYWRITE 0x0800 /* ETXTBSY */
|
|
|
|
# define MAP_EXECUTABLE 0x1000 /* Mark it as an executable */
|
|
|
|
# define MAP_LOCKED 0x2000 /* Pages are locked */
|
|
|
|
# define MAP_NORESERVE 0x4000 /* Don't check for reservations */
|
|
|
|
# define MAP_GROWSDOWN 0x8000 /* Stack-like segment */
|
|
|
|
# define MAP_POPULATE 0x10000 /* Populate (prefault) pagetables */
|
|
|
|
# define MAP_NONBLOCK 0x20000 /* Do not block on IO */
|
2016-01-02 22:31:12 +00:00
|
|
|
# define MAP_STACK 0x40000 /* Create for process/thread stacks */
|
|
|
|
# define MAP_HUGETLB 0x80000 /* Create a huge page mapping */
|
2018-06-05 11:04:46 +00:00
|
|
|
# define MAP_FIXED_NOREPLACE 0x100000 /* MAP_FIXED but do not unmap
|
|
|
|
underlying mapping. */
|
2006-09-07 16:34:43 +00:00
|
|
|
#endif
|
2000-10-15 03:29:27 +00:00
|
|
|
|
2018-10-04 19:47:23 +00:00
|
|
|
/* Advice to "madvise" */
|
|
|
|
#ifdef __USE_MISC
|
|
|
|
# define MADV_SOFT_OFFLINE 101 /* Soft offline page for testing. */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <bits/mman-linux.h>
|
|
|
|
|
|
|
|
#ifdef __USE_MISC
|
|
|
|
# undef MAP_TYPE
|
|
|
|
# define MAP_TYPE 0x2b /* Mask for type of mapping */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#undef MAP_FIXED
|
|
|
|
#define MAP_FIXED 0x04 /* Interpret addr exactly */
|
|
|
|
|
2006-09-07 16:34:43 +00:00
|
|
|
/* Flags to "msync" */
|
2018-10-04 19:47:23 +00:00
|
|
|
#undef MS_SYNC
|
2006-09-07 16:34:43 +00:00
|
|
|
#define MS_SYNC 1 /* Synchronous memory sync */
|
2018-10-04 19:47:23 +00:00
|
|
|
#undef MS_ASYNC
|
2006-09-07 16:34:43 +00:00
|
|
|
#define MS_ASYNC 2 /* Sync memory asynchronously */
|
2018-10-04 19:47:23 +00:00
|
|
|
#undef MS_INVALIDATE
|
2006-09-07 16:34:43 +00:00
|
|
|
#define MS_INVALIDATE 4 /* Invalidate the caches */
|
2000-10-15 03:29:27 +00:00
|
|
|
|
2006-09-07 16:34:43 +00:00
|
|
|
/* Advice to "madvise" */
|
2014-02-12 23:41:01 +00:00
|
|
|
#ifdef __USE_MISC
|
2018-10-04 19:47:23 +00:00
|
|
|
# undef MADV_MERGEABLE
|
2010-02-02 21:50:15 +00:00
|
|
|
# define MADV_MERGEABLE 65 /* KSM may merge identical pages */
|
2018-10-04 19:47:23 +00:00
|
|
|
# undef MADV_UNMERGEABLE
|
2010-02-02 21:50:15 +00:00
|
|
|
# define MADV_UNMERGEABLE 66 /* KSM may not merge identical pages */
|
2018-10-04 19:47:23 +00:00
|
|
|
# undef MADV_HUGEPAGE
|
2016-01-02 22:31:12 +00:00
|
|
|
# define MADV_HUGEPAGE 67 /* Worth backing with hugepages */
|
2018-10-04 19:47:23 +00:00
|
|
|
# undef MADV_NOHUGEPAGE
|
2016-01-02 22:31:12 +00:00
|
|
|
# define MADV_NOHUGEPAGE 68 /* Not worth backing with hugepages */
|
2018-10-04 19:47:23 +00:00
|
|
|
# undef MADV_DONTDUMP
|
2016-01-02 22:31:12 +00:00
|
|
|
# define MADV_DONTDUMP 69 /* Explicity exclude from the core dump,
|
|
|
|
overrides the coredump filter bits */
|
2018-10-04 19:47:23 +00:00
|
|
|
# undef MADV_DODUMP
|
2016-01-02 22:31:12 +00:00
|
|
|
# define MADV_DODUMP 70 /* Clear the MADV_NODUMP flag */
|
2018-10-04 19:47:23 +00:00
|
|
|
# undef MADV_WIPEONFORK
|
2017-11-15 18:40:29 +00:00
|
|
|
# define MADV_WIPEONFORK 71 /* Zero memory on fork, child only. */
|
2018-10-04 19:47:23 +00:00
|
|
|
# undef MADV_KEEPONFORK
|
2017-11-15 18:40:29 +00:00
|
|
|
# define MADV_KEEPONFORK 72 /* Undo MADV_WIPEONFORK. */
|
2015-08-05 09:17:29 +00:00
|
|
|
#endif
|