minix/lib/syslib/sys_endsig.c
Jorrit Herder 654722493b Renamed various system calls.
Cleaned up system call library.
Added new alert() trap to replace notify() --- current notify will be removed
and alert() will be called notify() later.
2005-07-14 15:13:33 +00:00

17 lines
438 B
C
Executable file

#include "syslib.h"
/*===========================================================================*
* sys_endksig *
*===========================================================================*/
PUBLIC int sys_endksig(proc_nr)
int proc_nr; /* process number */
{
message m;
int result;
m.SIG_PROC = proc_nr;
result = _taskcall(SYSTASK, SYS_ENDKSIG, &m);
return(result);
}