panic() cleanup.
[minix.git] / lib / libsys / vm_notify_sig.c
blob3325d6bb7fe752b357d4e843b1b1dd8148f02f98
2 #include "syslib.h"
4 #include <minix/vm.h>
6 /*===========================================================================*
7 * vm_notify_sig *
8 *===========================================================================*/
9 PUBLIC int vm_notify_sig(endpoint_t ep, endpoint_t ipc_ep)
11 message m;
12 int result;
14 m.VM_NOTIFY_SIG_ENDPOINT = ep;
15 m.VM_NOTIFY_SIG_IPC = ipc_ep;
17 result = _taskcall(VM_PROC_NR, VM_NOTIFY_SIG, &m);
18 return(result);