diff options
Diffstat (limited to 'vm')
-rw-r--r-- | vm/vm_fault.c | 2 | ||||
-rw-r--r-- | vm/vm_map.h | 2 | ||||
-rw-r--r-- | vm/vm_object.h | 2 | ||||
-rw-r--r-- | vm/vm_page.h | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/vm/vm_fault.c b/vm/vm_fault.c index 686156c..0fa4d6a 100644 --- a/vm/vm_fault.c +++ b/vm/vm_fault.c @@ -51,7 +51,7 @@ #include <mach/memory_object.h> #include <vm/memory_object_user.user.h> /* For memory_object_data_{request,unlock} */ -#include <kern/macro_help.h> +#include <kern/macros.h> #include <kern/slab.h> #if MACH_PCSAMPLE diff --git a/vm/vm_map.h b/vm/vm_map.h index b8103eb..fc7730a 100644 --- a/vm/vm_map.h +++ b/vm/vm_map.h @@ -52,7 +52,7 @@ #include <vm/vm_types.h> #include <kern/lock.h> #include <kern/rbtree.h> -#include <kern/macro_help.h> +#include <kern/macros.h> /* TODO: make it dynamic */ #define KENTRY_DATA_SIZE (256*PAGE_SIZE) diff --git a/vm/vm_object.h b/vm/vm_object.h index 5c42f56..3bfc67a 100644 --- a/vm/vm_object.h +++ b/vm/vm_object.h @@ -45,7 +45,7 @@ #include <kern/lock.h> #include <kern/assert.h> #include <kern/debug.h> -#include <kern/macro_help.h> +#include <kern/macros.h> #include <vm/pmap.h> #include <ipc/ipc_types.h> diff --git a/vm/vm_page.h b/vm/vm_page.h index 4fe1b41..e6a8c49 100644 --- a/vm/vm_page.h +++ b/vm/vm_page.h @@ -42,7 +42,7 @@ #include <kern/queue.h> #include <kern/lock.h> -#include <kern/macro_help.h> +#include <kern/macros.h> #include <kern/sched_prim.h> /* definitions of wait/wakeup */ #if MACH_VM_DEBUG |