minix/lib/libsys/sys_abort.c

22 lines
409 B
C
Raw Normal View History

2005-04-21 16:53:53 +02:00
#include "syslib.h"
#include <stdarg.h>
#include <unistd.h>
2012-03-25 20:25:53 +02:00
int sys_abort(int how, ...)
2005-04-21 16:53:53 +02:00
{
/* Something awful has happened. Abandon ship. */
message m;
va_list ap;
va_start(ap, how);
if ((m.ABRT_HOW = how) == RBT_MONITOR) {
m.ABRT_MON_ENDPT = va_arg(ap, int);
2005-04-21 16:53:53 +02:00
m.ABRT_MON_ADDR = va_arg(ap, char *);
m.ABRT_MON_LEN = va_arg(ap, size_t);
}
va_end(ap);
return(_kernel_call(SYS_ABORT, &m));
2005-04-21 16:53:53 +02:00
}