[haiku-commits] r35516 - haiku/trunk/src/system/kernel/arch/ppc

  • From: ingo_weinhold@xxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Thu, 18 Feb 2010 18:43:10 +0100 (CET)

Author: bonefish
Date: 2010-02-18 18:43:09 +0100 (Thu, 18 Feb 2010)
New Revision: 35516
Changeset: http://dev.haiku-os.org/changeset/35516/haiku
Ticket: http://dev.haiku-os.org/ticket/5275

Modified:
   haiku/trunk/src/system/kernel/arch/ppc/arch_vm_translation_map.cpp
Log:
Added missing PPCVMTranslationMap::QueryInterrupt(). Fixes #5275.


Modified: haiku/trunk/src/system/kernel/arch/ppc/arch_vm_translation_map.cpp
===================================================================
--- haiku/trunk/src/system/kernel/arch/ppc/arch_vm_translation_map.cpp  
2010-02-18 13:52:43 UTC (rev 35515)
+++ haiku/trunk/src/system/kernel/arch/ppc/arch_vm_translation_map.cpp  
2010-02-18 17:43:09 UTC (rev 35516)
@@ -576,6 +576,14 @@
 }
 
 
+status_t
+PPCVMTranslationMap::QueryInterrupt(addr_t virtualAddress,
+       addr_t* _physicalAddress, uint32* _flags)
+{
+       return PPCVMTranslationMap::Query(virtualAddress, _physicalAddress, 
_flags);
+}
+
+
 addr_t
 PPCVMTranslationMap::MappedSize() const
 {


Other related posts:

  • » [haiku-commits] r35516 - haiku/trunk/src/system/kernel/arch/ppc - ingo_weinhold