vm_map.h (2db65ab46e54af2f56b711c9049e5321bab88a17) | vm_map.h (e2997fea729a30ca91e4a921850978421618cd38) |
---|---|
1/*- 2 * Copyright (c) 1991, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * This code is derived from software contributed to Berkeley by 6 * The Mach Operating System project at Carnegie-Mellon University. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 305 unchanged lines hidden (view full) --- 314#define MAP_ACC_CHARGED 0x4000 315#define MAP_ACC_NO_CHARGE 0x8000 316 317/* 318 * vm_fault option flags 319 */ 320#define VM_FAULT_NORMAL 0 /* Nothing special */ 321#define VM_FAULT_CHANGE_WIRING 1 /* Change the wiring as appropriate */ | 1/*- 2 * Copyright (c) 1991, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * This code is derived from software contributed to Berkeley by 6 * The Mach Operating System project at Carnegie-Mellon University. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 305 unchanged lines hidden (view full) --- 314#define MAP_ACC_CHARGED 0x4000 315#define MAP_ACC_NO_CHARGE 0x8000 316 317/* 318 * vm_fault option flags 319 */ 320#define VM_FAULT_NORMAL 0 /* Nothing special */ 321#define VM_FAULT_CHANGE_WIRING 1 /* Change the wiring as appropriate */ |
322#define VM_FAULT_DIRTY 8 /* Dirty the page */ | |
323 324/* 325 * The following "find_space" options are supported by vm_map_find() 326 */ 327#define VMFS_NO_SPACE 0 /* don't find; use the given range */ 328#define VMFS_ANY_SPACE 1 /* find a range with any alignment */ 329#define VMFS_ALIGNED_SPACE 2 /* find a superpage-aligned range */ 330 --- 46 unchanged lines hidden --- | 322 323/* 324 * The following "find_space" options are supported by vm_map_find() 325 */ 326#define VMFS_NO_SPACE 0 /* don't find; use the given range */ 327#define VMFS_ANY_SPACE 1 /* find a range with any alignment */ 328#define VMFS_ALIGNED_SPACE 2 /* find a superpage-aligned range */ 329 --- 46 unchanged lines hidden --- |