diff options
Diffstat (limited to 'src/mem/page_table.hh')
-rw-r--r-- | src/mem/page_table.hh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mem/page_table.hh b/src/mem/page_table.hh index 461b07a69..3ce720ad4 100644 --- a/src/mem/page_table.hh +++ b/src/mem/page_table.hh @@ -33,17 +33,17 @@ * Declaration of a non-full system Page Table. */ -#ifndef __PAGE_TABLE__ -#define __PAGE_TABLE__ +#ifndef __MEM_PAGE_TABLE_HH__ +#define __MEM_PAGE_TABLE_HH__ #include <string> -#include "sim/faults.hh" #include "arch/isa_traits.hh" #include "arch/tlb.hh" #include "base/hashmap.hh" -#include "mem/request.hh" #include "base/types.hh" +#include "mem/request.hh" +#include "sim/faults.hh" #include "sim/serialize.hh" class Process; @@ -133,4 +133,4 @@ class PageTable void unserialize(Checkpoint *cp, const std::string §ion); }; -#endif +#endif // __MEM_PAGE_TABLE_HH__ |