home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / posix / signal / kill.txh < prev    next >
Encoding:
Text File  |  1995-07-10  |  284 b   |  17 lines

  1. @node kill, process
  2.  
  3. @example
  4. #include <signal.h>
  5.  
  6. int    kill(pid_t _pid, int _sig);
  7. @end example
  8.  
  9. @subheading Description
  10.  
  11. If @var{_pid} is the current @code{getpid()}, the given @var{_sig} is
  12. raised with @ref{raise}.
  13.  
  14. @subheading Return Value
  15.  
  16. -1 on error, else zero.
  17.