KILL.1
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:1k
源码类别:

操作系统开发

开发平台:

C/C++

  1. KILL(1)                   Minix Programmer's Manual                    KILL(1)
  2. NAME
  3.      kill - send a signal to a process
  4. SYNOPSIS
  5.      kill [-n] process
  6. OPTIONS
  7.      -n   Signal number to send
  8.      -NAME
  9.           Named signal to send
  10. EXAMPLES
  11.      kill 35             # Send signal 15 to process 35
  12.      kill -9 40          # Send signal 9 to process 40
  13.      kill -2 0           # Send signal 2 to whole terminal process group
  14.      kill -HUP -123      # Send a hangup to process group 123
  15. DESCRIPTION
  16.      A signal is sent to a given process.  By default signal 15  (SIGTERM)  is
  17.      sent.   Process  0 means all the processes in the sender's process group.
  18.      A process group can be signalled by the negative  value  of  the  process
  19.      group  ID.   Signals  may be numerical, or the name of the signal without
  20.      SIG.
  21. SEE ALSO
  22.      kill(2), sigaction(2).
  23.                                                                              1