clang-format on most of kernel/

This commit is contained in:
Ben Vanik
2014-08-17 13:13:03 -07:00
parent 854bcdb60a
commit 1c4dcd5e0e
76 changed files with 2075 additions and 3169 deletions

View File

@@ -15,11 +15,9 @@
#include <xenia/xbox.h>
namespace xe {
namespace kernel {
// List is designed for storing pointers to objects in the guest heap.
// All values in the list should be assumed to be in big endian.
@@ -31,7 +29,7 @@ namespace kernel {
// }
class NativeList {
public:
public:
NativeList(Memory* memory);
void Insert(uint32_t list_entry_ptr);
@@ -40,17 +38,15 @@ public:
uint32_t Shift();
bool HasPending();
private:
private:
const uint32_t kInvalidPointer = 0xE0FE0FFF;
private:
private:
Memory* memory_;
uint32_t head_;
};
} // namespace kernel
} // namespace xe
#endif // XENIA_KERNEL_XBOXKRNL_NATIVE_LIST_H_