xref: /illumos-gate/usr/src/compat/bhyve/sys/mman.h (revision 154972af)
1*154972afSPatrick Mooney /*
2*154972afSPatrick Mooney  * This file and its contents are supplied under the terms of the
3*154972afSPatrick Mooney  * Common Development and Distribution License ("CDDL"), version 1.0.
4*154972afSPatrick Mooney  * You may only use this file in accordance with the terms of version
5*154972afSPatrick Mooney  * 1.0 of the CDDL.
6*154972afSPatrick Mooney  *
7*154972afSPatrick Mooney  * A full copy of the text of the CDDL should have accompanied this
8*154972afSPatrick Mooney  * source.  A copy of the CDDL is also available via the Internet at
9*154972afSPatrick Mooney  * http://www.illumos.org/license/CDDL.
10*154972afSPatrick Mooney  */
11*154972afSPatrick Mooney 
12*154972afSPatrick Mooney /*
13*154972afSPatrick Mooney  * Copyright 2020 Oxide Computer Company
14*154972afSPatrick Mooney  */
15*154972afSPatrick Mooney 
16*154972afSPatrick Mooney #ifndef _COMPAT_FREEBSD_SYS_MMAN_H_
17*154972afSPatrick Mooney #define	_COMPAT_FREEBSD_SYS_MMAN_H_
18*154972afSPatrick Mooney 
19*154972afSPatrick Mooney #include_next <sys/mman.h>
20*154972afSPatrick Mooney 
21*154972afSPatrick Mooney #define	_PROT_ALL	(PROT_READ | PROT_WRITE | PROT_EXEC)
22*154972afSPatrick Mooney 
23*154972afSPatrick Mooney #endif	/* _COMPAT_FREEBSD_SYS_MMAN_H_ */
24