custom message type for VM_INFO
[minix3.git] / lib / libsys / sys_abort.c
blob547bd9d3c1a6d547277eee710a453f834c362603
1 #include "syslib.h"
2 #include <stdarg.h>
3 #include <unistd.h>
5 int sys_abort(int how)
7 /* Something awful has happened. Abandon ship. */
9 message m;
11 m.m_lsys_krn_sys_abort.how = how;
12 return(_kernel_call(SYS_ABORT, &m));