minix/lib/syslib/sys_sigsend.c

19 lines
545 B
C
Raw Normal View History

2005-04-29 17:36:43 +02:00
#include "syslib.h"
/*===========================================================================*
* sys_sigsend *
*===========================================================================*/
PUBLIC int sys_sigsend(proc_nr, sig_ctxt)
int proc_nr; /* for which process */
struct sigmsg *sig_ctxt; /* POSIX style handling */
{
message m;
int result;
m.SIG_ENDPT = proc_nr;
2005-04-29 17:36:43 +02:00
m.SIG_CTXT_PTR = (char *) sig_ctxt;
result = _taskcall(SYSTASK, SYS_SIGSEND, &m);
return(result);
}