vm: merge i386 and arm pagetable code
[minix.git] / lib / libminlib / vm_update.c
blobe3e7313250dbf6bdb38a72ad5ef1a96716ac7b40
1 #include <lib.h>
2 #include <unistd.h>
4 int vm_update(endpoint_t src_e, endpoint_t dst_e)
6 message m;
7 m.VM_RS_SRC_ENDPT = src_e;
8 m.VM_RS_DST_ENDPT = dst_e;
10 return _syscall(VM_PROC_NR, VM_RS_UPDATE, &m);