custom message type for VM_INFO
[minix3.git] / lib / libsys / vm_notify_sig.c
blobcf631fa69076e4f8d73c3339ec241b388d3c8d96
2 #include "syslib.h"
4 #include <string.h>
5 #include <minix/vm.h>
7 /*===========================================================================*
8 * vm_notify_sig *
9 *===========================================================================*/
10 int vm_notify_sig(endpoint_t ep, endpoint_t ipc_ep)
12 message m;
13 int result;
15 memset(&m, 0, sizeof(m));
16 m.VM_NOTIFY_SIG_ENDPOINT = ep;
17 m.VM_NOTIFY_SIG_IPC = ipc_ep;
19 result = _taskcall(VM_PROC_NR, VM_NOTIFY_SIG, &m);
20 return(result);