1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 18:44:58 +00:00
serenity/LibC/assert.cpp
2019-06-07 11:49:03 +02:00

18 lines
432 B
C++

#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
extern "C" {
#ifdef DEBUG
void __assertion_failed(const char* msg, const char* file, unsigned line, const char* func)
{
dbgprintf("USERSPACE(%d) ASSERTION FAILED: %s\n%s:%u in %s\n", getpid(), msg, file, line, func);
fprintf(stderr, "ASSERTION FAILED: %s\n%s:%u in %s\n", msg, file, line, func);
abort();
for (;;)
;
}
#endif
}