X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Kernel%2Flogging.c;h=54f16cadc4ab76b8dc5274f267b854b23405f975;hb=eecce4b7a55315f6c385ad8be35c25dbb12d43d8;hp=f4a23b4bd312a2987c7517701d487250071ad347;hpb=85eb17b306404571aa39596946c87ad9bb1d9d13;p=tpg%2Facess2.git diff --git a/Kernel/logging.c b/Kernel/logging.c index f4a23b4b..54f16cad 100644 --- a/Kernel/logging.c +++ b/Kernel/logging.c @@ -54,10 +54,8 @@ void Log_Warning(char *Ident, char *Message, ...); void Log_Notice(char *Ident, char *Message, ...); void Log_Log(char *Ident, char *Message, ...); void Log_Debug(char *Ident, char *Message, ...); -//static Uint64 Log_Int_GetIdent(const char *Str); // === EXPORTS === -EXPORT(Log_KernelPanic); EXPORT(Log_Panic); EXPORT(Log_Error); EXPORT(Log_Warning); @@ -67,6 +65,7 @@ EXPORT(Log_Debug); // === GLOBALS === tSpinlock glLog; +tSpinlock glLogOutput; tLogList gLog; tLogList gLog_Levels[NUM_LOG_LEVELS];