minix/lib/utils/panic.c

31 lines
864 B
C
Raw Normal View History

2005-04-21 16:53:53 +02:00
#include "utils.h"
/*===========================================================================*
* panic *
2005-04-21 16:53:53 +02:00
*===========================================================================*/
PUBLIC void panic(who, mess, num)
2005-04-21 16:53:53 +02:00
char *who; /* server identification */
char *mess; /* message format string */
int num; /* number to go with format string */
{
/* Something awful has happened. Panics are caused when an internal
* inconsistency is detected, e.g., a programming error or illegal
* value of a defined constant.
*/
message m;
if (NULL != who && NULL != mess) {
if (num != NO_NUM) {
printf("Panic in %s: %s: %d\n", who, mess, num);
} else {
printf("Panic in %s: %s\n", who, mess);
}
}
2005-06-24 18:19:41 +02:00
m.m_type = SYS_XIT;
m.PR_PROC_NR = SELF;
_taskcall(SYSTASK, SYS_XIT, &m);
2005-04-21 16:53:53 +02:00
/* never reached */
}