36e8c1a185
Panic now tries sys_kill with SIGKILL first.
14 lines
244 B
C
14 lines
244 B
C
/*
|
|
* assert.c - diagnostics
|
|
*/
|
|
|
|
#include <assert.h>
|
|
#include <stdio.h>
|
|
#include <minix/config.h>
|
|
#include <minix/const.h>
|
|
#include <minix/sysutil.h>
|
|
|
|
void __bad_assertion(const char *mess) {
|
|
printf("%s", mess);
|
|
panic(NULL, NULL, NO_NUM);
|
|
}
|