Lines Matching full:kill
1 /* kill.c - a program to send signals to processes
5 * See http://opengroup.org/onlinepubs/9699919799/utilities/kill.html
16 USE_KILL(NEWTOY(kill, "?ls: ", TOYFLAG_BIN|TOYFLAG_MAYFORK))
19 config KILL
20 bool "kill"
23 usage: kill [-l [SIGNAL] | -s SIGNAL | -SIGNAL] PID...
33 depends on KILL
54 // But kill's flags are a subset of killall5's
79 // signal must come before pids, so "kill -9 -1" isn't confusing.
137 kill(procpid, signum);
142 // is it kill?
153 if (errno || kill(pid, signum)<0) perror_msg("bad pid '%s'", arg);