From e67b1c1ad0a24e48e328e51cb0b0b305db93c7af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Mon, 11 Apr 2005 17:52:37 +0000 Subject: [PATCH] Added the arch_vm_supports_protection() call. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12288 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kernel/core/arch/ppc/arch_vm.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/kernel/core/arch/ppc/arch_vm.cpp b/src/kernel/core/arch/ppc/arch_vm.cpp index 2bf766500f..3c813a4805 100644 --- a/src/kernel/core/arch/ppc/arch_vm.cpp +++ b/src/kernel/core/arch/ppc/arch_vm.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2003-2004, Axel Dörfler, axeld@pinc-software.de. + * Copyright 2003-2005, Axel Dörfler, axeld@pinc-software.de. * Distributed under the terms of the MIT License. * * Copyright 2001, Travis Geiselbrecht. All rights reserved. @@ -105,3 +105,10 @@ arch_vm_aspace_swap(vm_address_space *aspace) { } + +bool +arch_vm_supports_protection(uint32 protection) +{ + return true; +} +