summaryrefslogtreecommitdiff
path: root/LibC/assert.cpp
blob: a123c911daebcd3ed67477acb36918e637bb3069 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <assert.h>
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>

extern "C" {

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 (;;);
}

}