2011-09-15 22:38:40 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
2011-11-26 11:00:45 +01:00
|
|
|
#include <error.h>
|
2011-09-15 22:38:40 +02:00
|
|
|
|
|
|
|
int usage()
|
|
|
|
{
|
|
|
|
printf("usage: kill [-n] pid ...\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
if ( argc < 2 ) { return usage(); }
|
|
|
|
|
|
|
|
int first = 1;
|
|
|
|
int signum = SIGTERM;
|
|
|
|
if ( argv[1][0] == '-' )
|
|
|
|
{
|
|
|
|
signum = atoi(argv[first++]);
|
|
|
|
if ( argc < 3 ) { return usage(); }
|
|
|
|
}
|
|
|
|
|
|
|
|
int result = 0;
|
|
|
|
|
|
|
|
for ( int i = first; i < argc; i++ )
|
|
|
|
{
|
|
|
|
pid_t pid = atoi(argv[i]);
|
|
|
|
if ( kill(pid, signum) )
|
|
|
|
{
|
2011-11-26 11:00:45 +01:00
|
|
|
error(0, errno, "(%u)", pid);
|
2011-09-15 22:38:40 +02:00
|
|
|
result |= 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|