summaryrefslogtreecommitdiffstats
path: root/sys/permission.h
blob: 08bb7659ee966c2eda746f3dddff29d7d7eb063c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#ifndef _SYS_PERMISSION_H
#define _SYS_PERMISSION_H 1

#define PERM_MEM_PHYS_RESV 1 /* Reserve physical memory. */
#define PERM_MEM_PHYS_FREE 2 /* Free physical memory. */
#define PERM_MEM_PHYS_ALLOC 4 /* Allocate physical memory. */

#define PERM_MEM_VIRT_PD 8 /* Work on any PD. */
#define PERM_MEM_VIRT_MAP 0x10 /* Map physical memory to virtual memory. */

#endif