repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
custom message type for VM_INFO
[minix3.git]
/
lib
/
libsys
/
sys_abort.c
blob
547bd9d3c1a6d547277eee710a453f834c362603
1
#include
"syslib.h"
2
#include <stdarg.h>
3
#include <unistd.h>
4
5
int
sys_abort
(
int
how
)
6
{
7
/* Something awful has happened. Abandon ship. */
8
9
message m
;
10
11
m
.
m_lsys_krn_sys_abort
.
how
=
how
;
12
return
(
_kernel_call
(
SYS_ABORT
, &
m
));
13
}