49808dcf77
- allow PM to tell sys_runctl() whether to use delay call feature - only use this feature in PM for delivering signals - not for exits - do better error checking in PM on sys_runctl() calls - rename SIGKREADY to SIGNDELAY
15 lines
440 B
C
15 lines
440 B
C
#include "syslib.h"
|
|
|
|
/*===========================================================================*
|
|
* sys_runctl *
|
|
*===========================================================================*/
|
|
PUBLIC int sys_runctl(endpoint_t proc_ep, int action, int flags)
|
|
{
|
|
message m;
|
|
|
|
m.RC_ENDPT = proc_ep;
|
|
m.RC_ACTION = action;
|
|
m.RC_FLAGS = flags;
|
|
|
|
return(_taskcall(SYSTASK, SYS_RUNCTL, &m));
|
|
}
|