/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */1#ifndef _UAPI__SPARC_MMAN_H__2#define _UAPI__SPARC_MMAN_H__34#include <asm-generic/mman-common.h>56/* SunOS'ified... */78#define PROT_ADI 0x10 /* ADI enabled */910#define MAP_RENAME MAP_ANONYMOUS /* In SunOS terminology */11#define MAP_NORESERVE 0x40 /* don't reserve swap pages */12#define MAP_INHERIT 0x80 /* SunOS doesn't do this, but... */13#define MAP_LOCKED 0x100 /* lock the mapping */14#define _MAP_NEW 0x80000000 /* Binary compatibility is fun... */1516#define MAP_GROWSDOWN 0x0200 /* stack-like segment */17#define MAP_DENYWRITE 0x0800 /* ETXTBSY */18#define MAP_EXECUTABLE 0x1000 /* mark it as an executable */1920#define MCL_CURRENT 0x2000 /* lock all currently mapped pages */21#define MCL_FUTURE 0x4000 /* lock all additions to address space */22#define MCL_ONFAULT 0x8000 /* lock all pages that are faulted in */2324#endif /* _UAPI__SPARC_MMAN_H__ */252627