source: trunk/minix/lib/syslib/sys_endsig.c@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

  • Property svn:executable set to *
File size: 439 bytes
Line 
1#include "syslib.h"
2
3/*===========================================================================*
4 * sys_endksig *
5 *===========================================================================*/
6PUBLIC int sys_endksig(proc_nr)
7int proc_nr; /* process number */
8{
9 message m;
10 int result;
11
12 m.SIG_ENDPT = proc_nr;
13 result = _taskcall(SYSTASK, SYS_ENDKSIG, &m);
14 return(result);
15}
16
Note: See TracBrowser for help on using the repository browser.