SIGSUSPE.2
Upload User: jnzhq888
Upload Date: 2007-01-18
Package Size: 51694k
Code Size: 1k
Category:

OS Develop

Development Platform:

WINDOWS

  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