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

操作系统开发

开发平台:

C/C++

  1. SIGSUSPEND(2)             Minix Programmer's Manual              SIGSUSPEND(2)
  2. NAME
  3.      sigsuspend - suspend until signalled
  4. SYNOPSIS
  5.      #include <signal.h>
  6.      int sigsuspend(const sigset_t *set)
  7. DESCRIPTION
  8.      Sigsuspend() installs the signal mask referenced by set and suspends  the
  9.      process  until  signalled.   The  signal  is  handled, the signal mask is
  10.      restored to the value it  had  before  the  sigsuspend()  call  and  call
  11.      returns.
  12. SEE ALSO
  13.      pause(2), sigaction(2), sigpending(2), sigprocmask(2), sigset(3).
  14. DIAGNOSTICS
  15.      Sigsuspend() never returns normally, so it always returns -1.  The  error
  16.      code  is either EINTR indicating that a signal has arrived, or EFAULT for
  17.      a bad set address.
  18. AUTHOR
  19.      Kees J. Bot (kjb@cs.vu.nl)
  20.                                                                              1