PAUSE.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. ." @(#)pause.3c 6.1 (Berkeley) 5/9/85
  6. ."
  7. .TH PAUSE 2 "May 9, 1985"
  8. .UC 4
  9. .SH NAME
  10. pause - stop until signal
  11. .SH SYNOPSIS
  12. .nf
  13. .ft B
  14. #include <unistd.h>
  15. int pause(void)
  16. .ft R
  17. .fi
  18. .SH DESCRIPTION
  19. .B Pause
  20. never returns normally.
  21. It is used to give up control while waiting for
  22. a signal from
  23. .BR kill (2)
  24. or the alarm timer, see
  25. .BR alarm (2).
  26. Upon termination of a signal handler started during a
  27. .B pause,
  28. the
  29. .B pause
  30. call will return.
  31. .SH "RETURN VALUE
  32. Always returns -1.
  33. .SH ERRORS
  34. .B Pause
  35. always returns:
  36. .TP 15
  37. [EINTR]
  38. The call was interrupted.
  39. .SH "SEE ALSO
  40. .BR alarm (2),
  41. .BR kill (2),
  42. .BR sigsuspend (2).