5d7f5fccf5
. remove or optionalify some pci debugging stuff
16 lines
439 B
C
Executable file
16 lines
439 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_ENDPT = proc_nr;
|
|
result = _taskcall(SYSTASK, SYS_ENDKSIG, &m);
|
|
return(result);
|
|
}
|
|
|