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
retire 64-bit conversion functions
[minix3.git]
/
lib
/
libsys
/
sys_abort.c
blob
a9403e54f2e8e45d70f214349ed788a7898c3723
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
.
ABRT_HOW
=
how
;
12
return
(
_kernel_call
(
SYS_ABORT
, &
m
));
13
}