X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Kernel%2Fdebug.c;h=bd3b4074f35dd7baf1462c30eb5fcbc561c51965;hb=ba8c9b788dd5b91dd172d2bbf07ae94e660ffd7d;hp=8df360914ecfba380850751bc159dc86a8aeb6f1;hpb=8bc40333b1401d7616b225945fee53d972c2f418;p=tpg%2Facess2.git diff --git a/Kernel/debug.c b/Kernel/debug.c index 8df36091..bd3b4074 100644 --- a/Kernel/debug.c +++ b/Kernel/debug.c @@ -9,7 +9,7 @@ #define E9(ch) __asm__ __volatile__ ("outb %%al, $0xe9"::"a"(((Uint8)ch))) // === IMPORTS === -extern void Proc_DumpThreads(); +extern void Threads_Dump(); // === GLOBALS === int gDebug_Level = 0; @@ -183,7 +183,7 @@ void Panic(char *Fmt, ...) va_end(args); E9('\n'); - Proc_DumpThreads(); + Threads_Dump(); __asm__ __volatile__ ("xchg %bx, %bx"); __asm__ __volatile__ ("cli;\n\thlt");