source: trunk/minix/lib/posix/_kill.c@ 9

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

Minix 3.1.2a

File size: 259 bytes
RevLine 
[9]1#include <lib.h>
2#define kill _kill
3#include <signal.h>
4
5PUBLIC int kill(proc, sig)
6int proc; /* which process is to be sent the signal */
7int sig; /* signal number */
8{
9 message m;
10
11 m.m1_i1 = proc;
12 m.m1_i2 = sig;
13 return(_syscall(MM, KILL, &m));
14}
Note: See TracBrowser for help on using the repository browser.