repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
. pci driver now returns devices, even when they have been pci_reserve()d
[minix3.git]
/
lib
/
posix
/
_killpg.c
blob
ed511b6974e73a1fa8e85e06b8d5b16ab15fb5ba
1
#include <lib.h>
2
#define killpg _killpg
3
#define kill _kill
4
#include <signal.h>
5
6
PUBLIC
int
killpg
(
pgrp
,
sig
)
7
int
pgrp
;
/* which process group is to be sent the
8
* signal
9
*/
10
int
sig
;
/* signal number */
11
{
12
return
kill
(-
pgrp
,
sig
);
13
}