Move descriptor classes to x86 namespace

This commit is contained in:
Eryn Wells 2016-03-09 01:12:05 -05:00
parent 0238e44efc
commit 3879b3c324
3 changed files with 17 additions and 10 deletions

View file

@ -6,8 +6,6 @@
* Oh god oh god. Descriptor tables.
*/
#include <stddef.h>
#include <stdint.h>
#include "Descriptors.hh"
namespace {
@ -24,7 +22,7 @@ struct PseudoDescriptor
}
namespace kernel {
namespace x86 {
/*
* Static
@ -223,4 +221,4 @@ IDT::load()
: : "m" (idt) :);
}
} /* namespace kernel */
} /* namespace x86 */