Lines Matching full:kill
1 /* kill.c - a program to send signals to processes
5 * See http://opengroup.org/onlinepubs/9699919799/utilities/kill.html
14 USE_KILL(NEWTOY(kill, "?ls: ", TOYFLAG_BIN|TOYFLAG_MAYFORK))
17 config KILL
18 bool "kill"
21 usage: kill [-l [SIGNAL] | -s SIGNAL | -SIGNAL] PID...
31 depends on KILL
52 // But kill's flags are a subset of killall5's
77 // signal must come before pids, so "kill -9 -1" isn't confusing.
133 kill(procpid, signum);
138 // is it kill?
148 if (*tmp || kill(pid, signum) < 0) error_msg("unknown pid '%s'", arg);