Formatting all code. Too gnarly to rebase properly.

This commit is contained in:
Ben Vanik
2015-12-29 13:13:34 -08:00
parent 4e7dfa477b
commit 948aa2400d
16 changed files with 27 additions and 30 deletions

View File

@@ -139,13 +139,9 @@ void KernelState::set_process_type(uint32_t value) {
pib->process_type = uint8_t(value);
}
uint32_t KernelState::AllocateTLS() {
return uint32_t(tls_bitmap_.Acquire());
}
uint32_t KernelState::AllocateTLS() { return uint32_t(tls_bitmap_.Acquire()); }
void KernelState::FreeTLS(uint32_t slot) {
tls_bitmap_.Release(slot);
}
void KernelState::FreeTLS(uint32_t slot) { tls_bitmap_.Release(slot); }
void KernelState::RegisterTitleTerminateNotification(uint32_t routine,
uint32_t priority) {