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

操作系统开发

开发平台:

C/C++

  1. SIGPENDING(2)             Minix Programmer's Manual              SIGPENDING(2)
  2. NAME
  3.      sigpending - report pending signals
  4. SYNOPSIS
  5.      #include <signal.h>
  6.      int sigpending(sigset_t *set)
  7. DESCRIPTION
  8.      Sigpending() returns the set of signals that are waiting to be delivered.
  9.      They are currently blocked by the signal mask.
  10. SEE ALSO
  11.      sigaction(2), sigprocmask(2), sigsuspend(2), sigset(3).
  12. DIAGNOSTICS
  13.      Returns 0 on success and -1 on error.  The only possible  error  code  is
  14.      EFAULT for a bad set address.
  15. AUTHOR
  16.      Kees J. Bot (kjb@cs.vu.nl)
  17.                                                                              1