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

操作系统开发

开发平台:

C/C++

  1. ." Copyright (c) 1980 Regents of the University of California.
  2. ." All rights reserved.  The Berkeley software License Agreement
  3. ." specifies the terms and conditions for redistribution.
  4. ."
  5. ." @(#)kill.2 6.5 (Berkeley) 5/14/86
  6. ."
  7. .TH KILL 2 "May 14, 1986"
  8. .UC 4
  9. .SH NAME
  10. kill - send signal to a process
  11. .SH SYNOPSIS
  12. .nf
  13. .ft B
  14. #include <sys/types.h>
  15. #include <signal.h>
  16. int kill(pid_t fIpidfP, int fIsigfP)
  17. .ft R
  18. .fi
  19. .SH DESCRIPTION
  20. .B Kill
  21. sends the signal fIsigfP
  22. to a process, specified by the process number
  23. .IR pid .
  24. .I Sig
  25. may be one of the signals specified in
  26. .BR sigaction (2),
  27. or it may be 0, in which case
  28. error checking is performed but no
  29. signal is actually sent. 
  30. This can be used to check the validity of
  31. .IR pid .
  32. .PP
  33. The sending and receiving processes must
  34. have the same effective user ID, otherwise
  35. this call is restricted to the super-user.
  36. .ig
  37. A single exception is the signal SIGCONT, which may always be sent
  38. to any descendant of the current process.
  39. ..
  40. .PP
  41. If the process number is 0,
  42. the signal is sent to all processes in the
  43. sender's process group.
  44. .PP
  45. If the process number is -1
  46. and the user is the super-user,
  47. the signal is broadcast universally
  48. except to
  49. .B init
  50. and the process sending the signal.
  51. If the process number is -1
  52. and the user is not the super-user,
  53. the signal is broadcast universally to
  54. all processes with the same uid as the user
  55. except the process sending the signal.
  56. No error is returned if any process could be signaled.
  57. .PP
  58. If the process number is negative but not -1,
  59. the signal is sent to all processes whose process group ID
  60. is equal to the absolute value of the process number.
  61. .PP
  62. Processes may send signals to themselves.
  63. .SH "RETURN VALUE
  64. Upon successful completion, a value of 0 is returned.
  65. Otherwise, a value of -1 is returned and
  66. .B errno
  67. is set to indicate the error.
  68. .SH "ERRORS
  69. .B Kill
  70. will fail and no signal will be sent if any of the following
  71. occur:
  72. .TP 15
  73. [EINVAL]
  74. fISigfP is not a valid signal number.
  75. .TP 15
  76. [ESRCH]
  77. No process can be found corresponding to that specified by fIpidfP.
  78. .TP 15
  79. [ESRCH]
  80. The process id was given as 0
  81. but the sending process does not have a process group.
  82. .TP 15
  83. [EPERM]
  84. The sending process is not the super-user and its effective
  85. user id does not match the effective user-id of the receiving process.
  86. When signaling a process group, this error was returned if any members
  87. of the group could not be signaled.
  88. .SH "SEE ALSO"
  89. .BR getpid (2),
  90. .BR getpgrp (2),
  91. .BR sigaction (2),
  92. .BR raise (3).