retire 64-bit conversion functions
[minix3.git] / lib / libsys / vm_fork.c
blob5931f756d70cdab4cf825fa41350fb447d8d9ea3
2 #include "syslib.h"
4 #include <minix/vm.h>
6 /*===========================================================================*
7 * vm_fork *
8 *===========================================================================*/
9 int vm_fork(endpoint_t ep, int slot, endpoint_t *childep)
11 message m;
12 int result;
14 m.VMF_ENDPOINT = ep;
15 m.VMF_SLOTNO = slot;
17 result = _taskcall(VM_PROC_NR, VM_FORK, &m);
19 *childep = m.VMF_CHILD_ENDPOINT;
21 return(result);