94c9376df5
Change-Id: Ib4f1b48268d4539ae6d4502ad647ecb73ea87f79
18 lines
541 B
C
18 lines
541 B
C
#include "syslib.h"
|
|
|
|
/*===========================================================================*
|
|
* sys_sigsend *
|
|
*===========================================================================*/
|
|
int sys_sigsend(proc_ep, sig_ctxt)
|
|
endpoint_t proc_ep; /* for which process */
|
|
struct sigmsg *sig_ctxt; /* POSIX style handling */
|
|
{
|
|
message m;
|
|
int result;
|
|
|
|
m.m_sigcalls.endpt = proc_ep;
|
|
m.m_sigcalls.sigctx = sig_ctxt;
|
|
result = _kernel_call(SYS_SIGSEND, &m);
|
|
return(result);
|
|
}
|
|
|