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

操作系统开发

开发平台:

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. ." @(#)alarm.3c 6.3 (Berkeley) 5/27/86
  6. ."
  7. .TH ALARM 2  "May 27, 1986"
  8. .UC 4
  9. .SH NAME
  10. alarm - schedule signal after specified time
  11. .SH SYNOPSIS
  12. .nf
  13. .ft B
  14. #include <unistd.h>
  15. unsigned int alarm(unsigned int fIsecondsfP)
  16. .ft R
  17. .fi
  18. .SH DESCRIPTION
  19. .B Alarm
  20. causes signal SIGALRM, see
  21. .BR sigaction (2),
  22. to be sent to the invoking process
  23. in a number of seconds given by the argument.
  24. Unless caught or ignored, the signal terminates the process.
  25. .PP
  26. Alarm requests are not stacked; successive calls reset the alarm clock.
  27. If the argument is 0, any alarm request is canceled.
  28. Because of scheduling delays,
  29. resumption of execution of when the signal is
  30. caught may be delayed an arbitrary amount.
  31. .PP
  32. The return value is the amount of time previously remaining in the alarm clock.
  33. .SH "SEE ALSO"
  34. .BR pause (2),
  35. .BR sigsuspend (2),
  36. .BR sigaction (2),
  37. .BR sleep (3).