From 39ce1ac62dc6c462363bd527c93d8d5cb22c54c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Wed, 20 Aug 2003 02:09:28 +0000 Subject: [PATCH] Didn't know B_SLOWMEM - bumped B_ALREADY_WIRED one further. Fixed the now broken LOCK_KERNEL definition. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@4328 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/kernel/vm_types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/headers/private/kernel/vm_types.h b/headers/private/kernel/vm_types.h index 3c362d2d51..c6d246c138 100644 --- a/headers/private/kernel/vm_types.h +++ b/headers/private/kernel/vm_types.h @@ -177,7 +177,7 @@ enum { // ToDo: these are here only temporarily - it's a private // addition to the BeOS create_area() flags - B_ALREADY_WIRED = 5 + B_ALREADY_WIRED = 6 }; enum { @@ -202,7 +202,7 @@ enum { #define LOCK_RO 0 #define LOCK_RW 1 -#define LOCK_KERNEL (B_KERNEL_PROTECTION) +#define LOCK_KERNEL 2 #define PROTECTION_TO_LOCK(protection) \ (protection & B_KERNEL_PROTECTION ? \