home *** CD-ROM | disk | FTP | other *** search
/ Atari FTP / ATARI_FTP_0693.zip / ATARI_FTP_0693 / Mint / mntutm94.zoo / kill.1z / kill
Text File  |  1992-06-21  |  1KB  |  32 lines

  1.  
  2. NAME
  3.     kill - send a signal to one or more processes
  4.  
  5. SYNOPSIS
  6.     kill [ -sig ] pid [ pid...  ]
  7.  
  8. DESCRIPTION
  9.     Kill sends the signal number sig to the processes which have the
  10.     given  process id's (the process id is given as its extension on
  11.     a listing of drive X:).  Usually this results in  the  death  of
  12.     the process.   If sig is omitted, 15 (SIGTERM) is assumed.  Some
  13.     useful signal numbers are:
  14.  
  15.     9 (SIGKILL)
  16.         this cannot be caught or ignored, so it is certain death
  17.         for the process
  18.  
  19.     17 (SIGSTOP)
  20.         stops the process
  21.  
  22.     19 (SIGCONT)
  23.         forces a stopped process to continue.
  24.  
  25. IMPLEMENTATION
  26.     Built with the MiNT library, patchlevel 19.  Using  a  different
  27.     library,  or  an earlier version of the MiNT library, may or may
  28.     not cause problems; in particular, various constants defined  in
  29.     <signal.h>  and  <ioctl.h> will probably be wrong if you are not
  30.     using the MiNT library.
  31.  
  32.