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: merge i386 and arm pagetable code
[minix.git]
/
lib
/
libminlib
/
vm_update.c
blob
e3e7313250dbf6bdb38a72ad5ef1a96716ac7b40
1
#include <lib.h>
2
#include <unistd.h>
3
4
int
vm_update
(
endpoint_t src_e
,
endpoint_t dst_e
)
5
{
6
message m
;
7
m
.
VM_RS_SRC_ENDPT
=
src_e
;
8
m
.
VM_RS_DST_ENDPT
=
dst_e
;
9
10
return
_syscall
(
VM_PROC_NR
,
VM_RS_UPDATE
, &
m
);
11
}