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

操作系统开发

开发平台:

C/C++

  1. SIGPROCMASK(2)            Minix Programmer's Manual             SIGPROCMASK(2)
  2. NAME
  3.      sigprocmask - manipulate the signal mask
  4. SYNOPSIS
  5.      #include <signal.h>
  6.      int sigprocmask(int how, const sigset_t *set, sigset_t *oset)
  7. DESCRIPTION
  8.      Sigprocmask() examines or manipulates the signal mask.  This mask is  the
  9.      set  of  signals that are currently blocked.  The how argument determines
  10.      the action  that  must  be  performed.   In  all  cases  the  signal  set
  11.      referenced  by  oset, if not NULL, will be used to receive the old signal
  12.      mask.  The set argument, if not NULL, will be used to set or  modify  the
  13.      current signal mask.
  14.      How can be one of:
  15.      SIG_BLOCK      Add the signals referenced by set to the mask.
  16.      SIG_UNBLOCK    Remove the signals referenced by set from the mask.
  17.      SIG_SETMASK    Set the signal mask to the set referenced by set.
  18.      The value of how is ignored if set is NULL.
  19. SEE ALSO
  20.      sigaction(2), sigpending(2), sigsuspend(2), sigset(3).
  21. DIAGNOSTICS
  22.      Returns 0 on success and -1 on error.  The error code is EFAULT for a bad
  23.      set or oset address, or EINVAL for a bad how argument.
  24. AUTHOR
  25.      Kees J. Bot (kjb@cs.vu.nl)
  26.                                                                              1