mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 18:44:58 +00:00
18 lines
432 B
C++
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
|
|
}
|