Download 1616: User Disk
Transcript
killpg - signal a process group killpg [-nn] process_group [process_group ... ] Description Send a signal to a process group. -nn is the signal number to send. If no signal is specified, the kill is sent as a default. The signals available are described in the include file signal.h, and are similar to UNIX. Not all are appropriate. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 sighup signit sigquit sigill sigtrap sigiot sigemt sigfpe sigkill sigbus sigsegv sigsys sigpipe sigalrm sigterm sigusr1 sigusr2 sigcld sigpwr sigstop sigcont sigexit sigblockrx hangup line interrupt ^C or break quit ^\ illegal instruction trace trap IOT instruction EMT instruction floating point exception kill, cannot be caught or ignored bus error segmentation violation bad argument to system call write on pipe with no-one to read alarm clock software termination signal from kill user defined signal 1 user defined signal 2 death of a child power fail restart (not used) suspend process restart process someone exited someone sent us an IPC block Examples Bugs Associated files killpg.c See also Disk Utilities User Reference Page 35