Thread: Replace a for-loop with range-for
This commit is contained in:
parent
db0a526fbb
commit
906da53958
1 changed files with 1 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue