Backport of fix from asynchvfs branch for PM-LOG-VFS-PM deadlock that resulted in...
[minix3-old.git] / lib / syslib / sys_endsig.c
blob8385b4d864a73e685814418e3695923bb9bbc5ec
1 #include "syslib.h"
3 /*===========================================================================*
4 * sys_endksig *
5 *===========================================================================*/
6 PUBLIC int sys_endksig(proc_nr)
7 int proc_nr; /* process number */
9 message m;
10 int result;
12 m.SIG_ENDPT = proc_nr;
13 result = _taskcall(SYSTASK, SYS_ENDKSIG, &m);
14 return(result);