2 * Copyright 2007, Vasilis Kaoutsis, kaoutsis@sch.gr.
3 * Distributed under the terms of the MIT License.
10 #include <errno_private.h>
14 killpg(pid_t processGroupID
, int signal
)
16 if (processGroupID
> 1)
17 return kill(-processGroupID
, signal
);