logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

sigpending — get pending signals

Description

The sigpending() system call returns a mask of the signals pending for delivery to the calling thread or the calling process in the location indicated by set. Signals may be pending because they are currently masked, or transiently before delivery (although the latter case is not normally detectable).

Errors

The sigpending() system call will fail if: [EFAULT] The set argument specified an invalid address.

Library

Standard C Library (libc, -lc)

Name

sigpending — get pending signals

Return Values

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.

See Also

sigaction(2), sigprocmask(2), sigsuspend(2), sigsetops(3)

Standards

The sigpending() system call is expected to conform to ISO/IEC 9945-1:1990 (“POSIX.1”). Debian September 6, 2013 SIGPENDING(2)

Synopsis

#include<signal.h>intsigpending(sigset_t*set);

See Also