repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
VM: full munmap
[minix.git]
/
lib
/
libsys
/
sys_int86.c
blob
f697819cb80ac49d07822b8a35f95015f7cc771c
1
#include
"syslib.h"
2
3
/*===========================================================================*
4
* sys_int86 *
5
*===========================================================================*/
6
int
sys_int86
(
reg86p
)
7
struct
reg86u
*
reg86p
;
8
{
9
message m
;
10
int
result
;
11
12
m
.
m1_p1
= (
char
*)
reg86p
;
13
14
result
=
_kernel_call
(
SYS_INT86
, &
m
);
15
return
(
result
);
16
}
17