PAUSE.2
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:1k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. PAUSE(2)                  Minix Programmer's Manual                   PAUSE(2)
  2. NAME
  3.      pause - stop until signal
  4. SYNOPSIS
  5.      #include <unistd.h>
  6.      int pause(void)
  7. DESCRIPTION
  8.      Pause never returns normally.  It  is  used  to  give  up  control  while
  9.      waiting for a signal from kill(2) or the alarm timer, see alarm(2).  Upon
  10.      termination of a signal handler started during a pause,  the  pause  call
  11.      will return.
  12. RETURN VALUE
  13.      Always returns -1.
  14. ERRORS
  15.      Pause always returns:
  16.      [EINTR]        The call was interrupted.
  17. SEE ALSO
  18.      alarm(2), kill(2), sigsuspend(2).
  19. 4BSD                               May 9, 1985                               1