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

This manual page is part of the POSIX Programmer's Manual. The Linux implementation of this interface

Application Usage

       None.

Description

       The sigpending() function shall store, in the location referenced by the set argument, the set of signals
       that  are  blocked from delivery to the calling thread and that are pending on the process or the calling
       thread.

Errors

       No errors are defined.

       Thefollowingsectionsareinformative.

Examples

       None.

Future Directions

       None.

Name

       sigpending — examine pending signals

Prolog

       This  manual  page  is part of the POSIX Programmer's Manual.  The Linux implementation of this interface
       may differ (consult the corresponding Linux manual page for details of Linux behavior), or the  interface
       may not be implemented on Linux.

Rationale

       None.

Return Value

       Upon successful completion, sigpending() shall return 0; otherwise, -1 shall be returned and errno set to
       indicate the error.

See Also

exec, pthread_sigmask(), sigaddset(), sigdelset(), sigemptyset(), sigfillset(), sigismember()

       The Base Definitions volume of POSIX.1‐2017, <signal.h>

Synopsis

       #include <signal.h>

       int sigpending(sigset_t *set);

See Also