MCPcopy Create free account
hub / github.com/LemonOSProject/LemonOS / Warning

Function Warning

Kernel/src/logging.cpp:196–204  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

194 }
195
196 void Warning(const char* __restrict fmt, ...){
197 //acquireLock(&logLock);
198 Write("\r\n[WARN] ", 255, 255, 0);
199 va_list args;
200 va_start(args, fmt);
201 WriteF(fmt, args);
202 va_end(args);
203 //releaseLock(&logLock);
204 }
205
206 void Error(const char* __restrict fmt, ...){
207 unlockSerial();

Callers 15

kmainFunction · 0.85
InvalidInterruptHandlerFunction · 0.85
isr_handlerFunction · 0.85
irq_handlerFunction · 0.85
ipi_handlerFunction · 0.85
VerifyELFFunction · 0.85
CreateELFProcessFunction · 0.85
laihost_logFunction · 0.85
SpuriousInterruptHandlerFunction · 0.85
InitCoreFunction · 0.85
SysExecFunction · 0.85

Calls 2

WriteFFunction · 0.85
WriteFunction · 0.70

Tested by

no test coverage detected