summaryrefslogtreecommitdiffstats
path: root/src/lib/assert.C
blob: 953068d4a8cbf2d0b01edf4f7805e1ad00da447c (plain)
1
2
3
4
5
6
7
8
9
10
#include <kernel/console.H>

extern "C" void __assert(bool expr, const char *exprStr, 
			 const char *file, int line)
{
    // TODO    
    printk("Assert in %s (%d): %s\n", file, line, exprStr);
    while (true);
}

OpenPOWER on IntegriCloud