diff options
| author | Stefan Eßer <se@FreeBSD.org> | 1995-11-30 20:59:08 +0000 |
|---|---|---|
| committer | Stefan Eßer <se@FreeBSD.org> | 1995-11-30 20:59:08 +0000 |
| commit | ff98bff638db1eb5c3309905d0c91854462f8e9d (patch) | |
| tree | 3a1ccec1095b2eeb95c3d41597ce913c22f97d1d /sys | |
| parent | ffe4e40844d4fc2fc8ed887cd9ef5e263a2b3b7a (diff) | |
Notes
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/sys/mman.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/sys/mman.h b/sys/sys/mman.h index 56722c260c37..f0195870e5e3 100644 --- a/sys/sys/mman.h +++ b/sys/sys/mman.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)mman.h 8.1 (Berkeley) 6/2/93 - * $Id: mman.h,v 1.7 1995/05/14 19:19:07 nate Exp $ + * $Id: mman.h,v 1.8 1995/07/13 08:48:02 davidg Exp $ */ #ifndef _SYS_MMAN_H_ @@ -40,6 +40,7 @@ /* * Protections are chosen from these bits, or-ed together */ +#define PROT_NONE 0x00 /* no access to pages */ #define PROT_READ 0x01 /* pages can be read */ #define PROT_WRITE 0x02 /* pages can be written */ #define PROT_EXEC 0x04 /* pages can be executed */ |
