freemyipod r544 - Code Review

Jump to: navigation, search
Repository:freemyipod
Revision:r543‎ | r544 | r545 >
Date:21:37, 6 February 2011
Author:theseven
Status:new
Tags:
Comment:
Oops, some debugging code slipped through...
Modified paths:
  • /emcore/trunk/thread.c (modified) (history)

Diff [purge]

Index: emcore/trunk/thread.c
@@ -503,13 +503,11 @@
504504 for (t = head_thread; t; t = t->thread_next)
505505 if (t->type <= type && (killself || current_thread != t))
506506 {
507 - panicf(PANIC_FATAL, "Killing thread %08X: %s (%d)", t, t->name, t->type);
508507 thread_terminate_internal(t, mode);
509508 found = true;
510509 count++;
511510 break;
512511 }
513 - panicf(PANIC_FATAL, "Reached end of list");
514512 if (found) continue;
515513 leave_critical_section(mode);
516514 break;