654722493b
Cleaned up system call library. Added new alert() trap to replace notify() --- current notify will be removed and alert() will be called notify() later.
16 lines
438 B
C
Executable file
16 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);
|
|
}
|
|
|