1 /* 2 * Copyright 2010, Ingo Weinhold, ingo_weinhold@gmx.de. 3 * Distributed under the terms of the MIT License. 4 */ 5 6 7 #include "paging/pae/X86PagingStructuresPAE.h" 8 9 #include <KernelExport.h> 10 11 12 #if B_HAIKU_PHYSICAL_BITS == 64 13 14 15 X86PagingStructuresPAE::X86PagingStructuresPAE() 16 { 17 } 18 19 20 X86PagingStructuresPAE::~X86PagingStructuresPAE() 21 { 22 } 23 24 25 void 26 X86PagingStructuresPAE::Init() 27 { 28 // TODO: Implement! 29 panic("X86PagingStructuresPAE::Init(): not implemented"); 30 } 31 32 33 void 34 X86PagingStructuresPAE::Delete() 35 { 36 // TODO: Implement! 37 panic("X86PagingStructuresPAE::Delete(): not implemented"); 38 } 39 40 41 /*static*/ void 42 X86PagingStructuresPAE::StaticInit() 43 { 44 // TODO: Implement! 45 panic("X86PagingStructuresPAE::StaticInit(): not implemented"); 46 } 47 48 49 #endif // B_HAIKU_PHYSICAL_BITS == 64 50