명칭 sigpending — 보류중의 시그널의 취득 프로그램 라이브러리 Standard C Library (libc, -lc) 서식 <signal.h> int sigpending(sigset_t *set) 해설 sigpending() 함수는, set 그리고 나타난 장소의 호출 프로세스의 전달이 보류가 되어 있는 시그널의 마스크를 되돌립니다. 시그널은, 현재 마스크를 쓸 수 있고 있을 때, 또는 전달전에 일시적으로 보류가 됩니다 (통상, 후자를 검출할 수 없습니다). 반환값 The sigpending() function returns the value 0 if successful; otherwise the value -1 is returned and the global variable errno is set to indicate the error. 에러 sigpending() 함수는, 실패했을 경우에 다음의 에러를 돌려줍니다. [EFAULT] 인수 set 하지만 가리키는 주소가 무효입니다. 관련 항목 sigaction(2), sigprocmask(2) 표준 sigpending() 함수 호출은, ISO/IEC 9945-1:1990 (“POSIX.1”) 에 준거하고 있습니다.