Thread: Replace a for-loop with range-for

This commit is contained in:
Yuri Kunde Schlesner 2014-12-22 12:46:52 -02:00
parent db0a526fbb
commit 906da53958

View file

@ -272,8 +272,7 @@ void DebugThreadQueue() {
return;
}
LOG_DEBUG(Kernel, "0x%02X 0x%08X (current)", thread->current_priority, GetCurrentThread()->GetHandle());
for (u32 i = 0; i < thread_queue.size(); i++) {
Handle handle = thread_queue[i];
for (Handle handle : thread_queue) {
s32 priority = thread_ready_queue.contains(handle);
if (priority != -1) {
LOG_DEBUG(Kernel, "0x%02X 0x%08X", priority, handle);