X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;ds=sidebyside;f=Kernel%2Fdebug.c;h=8533a9e8c143cee3348932a85098851cbdb8553d;hb=b2934fe046a55291ae03035a6270db3b32950c8f;hp=66c20597b091080b895c9f60fa7c9fb48ccb2ea9;hpb=fd6e994acc5bc3073e979b6f862a4d199bec4ff7;p=tpg%2Facess2.git diff --git a/Kernel/debug.c b/Kernel/debug.c index 66c20597..8533a9e8 100644 --- a/Kernel/debug.c +++ b/Kernel/debug.c @@ -13,6 +13,8 @@ #define GDB_SERIAL_PORT 0x2F8 #define DEBUG_MAX_LINE_LEN 256 +#define LOCK_DEBUG_OUTPUT 0 + // === IMPORTS === extern void Threads_Dump(void); extern void KernelPanic_SetMode(void); @@ -32,6 +34,9 @@ void Debug_Fmt(const char *format, va_list args); int gbGDB_SerialSetup = 0; int gbDebug_IsKPanic = 0; volatile int gbInPutChar = 0; +#if LOCK_DEBUG_OUTPUT +tSpinlock glDebug_Lock; +#endif // === CODE === int putDebugChar(char ch) @@ -163,11 +168,19 @@ void LogF(char *Fmt, ...) { va_list args; + #if LOCK_DEBUG_OUTPUT + VTIGHTLOCK(&glDebug_Lock); + #endif + va_start(args, Fmt); Debug_Fmt(Fmt, args); va_end(args); + + #if LOCK_DEBUG_OUTPUT + RELEASE(&glDebug_Lock); + #endif } /** * \fn void Debug(char *Msg, ...) @@ -176,6 +189,10 @@ void LogF(char *Fmt, ...) void Debug(char *Fmt, ...) { va_list args; + + #if LOCK_DEBUG_OUTPUT + LOCK(&glDebug_Lock); + #endif Debug_Puts(0, "Debug: "); va_start(args, Fmt); @@ -183,6 +200,9 @@ void Debug(char *Fmt, ...) va_end(args); Debug_PutCharDebug('\r'); Debug_PutCharDebug('\n'); + #if LOCK_DEBUG_OUTPUT + RELEASE(&glDebug_Lock); + #endif } /** * \fn void Log(char *Msg, ...) @@ -190,6 +210,10 @@ void Debug(char *Fmt, ...) void Log(char *Fmt, ...) { va_list args; + + #if LOCK_DEBUG_OUTPUT + LOCK(&glDebug_Lock); + #endif Debug_Puts(1, "Log: "); va_start(args, Fmt); @@ -197,21 +221,39 @@ void Log(char *Fmt, ...) va_end(args); Debug_Putchar('\r'); Debug_Putchar('\n'); + + #if LOCK_DEBUG_OUTPUT + RELEASE(&glDebug_Lock); + #endif } void Warning(char *Fmt, ...) { va_list args; + + #if LOCK_DEBUG_OUTPUT + LOCK(&glDebug_Lock); + #endif + Debug_Puts(1, "Warning: "); va_start(args, Fmt); Debug_Fmt(Fmt, args); va_end(args); Debug_Putchar('\r'); Debug_Putchar('\n'); + + #if LOCK_DEBUG_OUTPUT + RELEASE(&glDebug_Lock); + #endif } void Panic(char *Fmt, ...) { va_list args; + #if LOCK_DEBUG_OUTPUT + LOCK(&glDebug_Lock); + #endif + // And never release + Debug_KernelPanic(); Debug_Puts(1, "Panic: "); @@ -308,6 +350,10 @@ void Debug_Leave(char *FuncName, char RetType, ...) va_list args; int i = --gDebug_Level; + #if LOCK_DEBUG_OUTPUT + LOCK(&glDebug_Lock); + #endif + va_start(args, RetType); if( i == -1 ) { @@ -351,9 +397,10 @@ void Debug_HexDump(char *Header, void *Data, Uint Length) Debug_Puts(1, Header); LogF(" (Hexdump of %p)\r\n", Data); + #define CH(n) ((' '<=cdat[(n)]&&cdat[(n)]<=0x7F) ? cdat[(n)] : '.') + while(Length >= 16) { - #define CH(n) ((' '<=cdat[(n)]&&cdat[(n)]<=0x7F) ? cdat[(n)] : '.') Log("%04x: %02x %02x %02x %02x %02x %02x %02x %02x" " %02x %02x %02x %02x %02x %02x %02x %02x" " %c%c%c%c%c%c%c%c %c%c%c%c%c%c%c%c", @@ -368,14 +415,22 @@ void Debug_HexDump(char *Header, void *Data, Uint Length) pos += 16; } - LogF("Log: %04x: ", pos); - while(Length) { - Uint byte = *cdat; - LogF("%02x ", byte); - Length--; - cdat ++; + int i ; + LogF("Log: %04x: ", pos); + for(i = 0; i < Length; i ++) + { + LogF("%02x ", cdat[i]); + } + for( ; i < 16; i ++) LogF(" "); + LogF(" "); + for(i = 0; i < Length; i ++) + { + if( i == 8 ) LogF(" "); + LogF("%c", CH(i)); + } } + Debug_Putchar('\r'); Debug_Putchar('\n'); }