*** empty log message ***
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
#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_PROC = proc_nr;
|
||||
m.SIG_CTXT_PTR = (char *) sig_ctxt;
|
||||
result = _taskcall(SYSTASK, SYS_SIGSEND, &m);
|
||||
return(result);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user