don't print SYSTEM stacktrace on exceptions as it's not scheduled any more.
[minix.git] / lib / libsys / sys_runctl.c
blobf0d35a70def1eaf6dbb8f2520399ebf28646c5d4
1 #include "syslib.h"
3 /*===========================================================================*
4 * sys_runctl *
5 *===========================================================================*/
6 PUBLIC int sys_runctl(endpoint_t proc_ep, int action, int flags)
8 message m;
10 m.RC_ENDPT = proc_ep;
11 m.RC_ACTION = action;
12 m.RC_FLAGS = flags;
14 return(_kernel_call(SYS_RUNCTL, &m));