sigrelse()

remove signal from calling signal mask of process 

Function


SYNOPSIS

#include <signal.h>

int sigrelse(int sig);


DESCRIPTION

The sigrelse() function removes sig from the calling signal mask of the process.

You can use sighold() and sigrelse() to establish critical regions of code that require the delivery of a signal to be temporarily deferred.


PARAMETERS

sig 

Specifies the signal, which may be any signal except SIGKILL or SIGSTOP.


RETURN VALUES

If successful, sigrelse() returns zero. On failure, it returns -1 and sets errno to one of the following values:

EINTR 

A signal interrupted the call.

EINVAL 

sig is not a valid signal or is equal to SIGKILL or SIGSTOP.


CONFORMANCE

UNIX 98.


MULTITHREAD SAFETY LEVEL

MT-Safe.


PORTING ISSUES

None.


AVAILABILITY

MKS Toolkit for Professional Developers
MKS Toolkit for Enterprise Developers
MKS Toolkit for Enterprise Developers 64-Bit Edition


SEE ALSO

api_intro

Functions:
kill(), pause(), sigaction(), sighold(), sigignore(), signal(), sigpause(), sigset()


MKS Toolkit 9.2 Documentation Build 16.