1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:17:35 +00:00

Move assertion failures out-of-line to reduce binary bloat.

This commit is contained in:
Andreas Kling 2018-11-04 13:12:58 +01:00
parent 7fe4063323
commit 8b4b684d6d
2 changed files with 10 additions and 1 deletions

View file

@ -447,3 +447,10 @@ void handleIRQ()
s_irqHandler[irq]->handleIRQ();
PIC::eoi(irq);
}
void __assertion_failed(const char* msg, const char* file, unsigned line, const char* func)
{
asm volatile("cli");
kprintf("ASSERTION FAILED: %s\n%s:%u in %s\n", msg, file, line, func);
asm volatile("hlt");
}