Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

sigdelset(3c) [hpux man page]

sigsetops(3C)															     sigsetops(3C)

NAME
sigemptyset(), sigfillset(), sigaddset(), sigdelset(), sigismember() - initialize, manipulate, and test signal sets SYNOPSIS
DESCRIPTION
initializes the signal set pointed to by set, to exclude all signals supported by HP-UX. initializes the signal set pointed to by set, to include all signals supported by HP-UX. Applications must call either or at least once for each object of type before using that object for anything else, including cases where the object is returned from a function (for example, the oset argument to -- see sigprocmask(2)). adds the signal specified by signo to the signal set pointed to by set. deletes the signal specified by signo from the signal set pointed to by set. tests whether the signal specified by signo is a member of the signal set pointed to by set. RETURN VALUE
Upon successful completion, returns a value of 1 if the specified signal is a member of the specified set, or a value of 0 if it is not. The other functions return a value of 0 upon successful completion. For all of the above functions, if an error is detected, a value of -1 is returned and is set to indicate the error. ERRORS
and fail if the following is true: [EINVAL] The value of the signo argument is out of range. WARNINGS
The above functions do not detect a bad address passed in for the set argument. A segmentation fault is the most likely result. AUTHOR
and were derived from the SEE ALSO
sigaction(2), sigsuspend(2), sigpending(2), sigprocmask(2), signal(5). STANDARDS CONFORMANCE
sigsetops(3C)

Check Out this Related Man Page

sigsetops(3C)															     sigsetops(3C)

NAME
sigemptyset(), sigfillset(), sigaddset(), sigdelset(), sigismember() - initialize, manipulate, and test signal sets SYNOPSIS
DESCRIPTION
initializes the signal set pointed to by set, to exclude all signals supported by HP-UX. initializes the signal set pointed to by set, to include all signals supported by HP-UX. Applications must call either or at least once for each object of type before using that object for anything else, including cases where the object is returned from a function (for example, the oset argument to -- see sigprocmask(2)). adds the signal specified by signo to the signal set pointed to by set. deletes the signal specified by signo from the signal set pointed to by set. tests whether the signal specified by signo is a member of the signal set pointed to by set. RETURN VALUE
Upon successful completion, returns a value of 1 if the specified signal is a member of the specified set, or a value of 0 if it is not. The other functions return a value of 0 upon successful completion. For all of the above functions, if an error is detected, a value of -1 is returned and is set to indicate the error. ERRORS
and fail if the following is true: [EINVAL] The value of the signo argument is out of range. WARNINGS
The above functions do not detect a bad address passed in for the set argument. A segmentation fault is the most likely result. AUTHOR
and were derived from the SEE ALSO
sigaction(2), sigsuspend(2), sigpending(2), sigprocmask(2), signal(5). STANDARDS CONFORMANCE
sigsetops(3C)
Man Page

6 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

signal SEGV (no mapping at the fault address) in _malloc_unlocked at 0xfe1d44ac

When i run a program in sun solaris i got core dumped with an error message as follows... signal SEGV (no mapping at the fault address) in _malloc_unlocked at 0xfe1d44ac 0xfe1d44ac: _malloc_unlocked+0x022c: ld , %o3 Current function is GetEDBInfo 360 EXEC SQL (dbx) where... (1 Reply)
Discussion started by: noufal
1 Replies

2. UNIX and Linux Applications

SIGSEGV Signal handling

Hello, Can anybody tell me how can i handle segmentation fault signal, in C code? (2 Replies)
Discussion started by: mustus
2 Replies

3. UNIX for Dummies Questions & Answers

signal SEGV (no mapping at the fault address)

Hello i ve got the following error on a C servor. signal SEGV (no mapping at the fault address) when running in dbx program terminated by signal SEGV (no mapping at the fault address) 0xff1d5cb4: srch_dir+0x0154: cmp %o1, %o0 Current function is _log 533 ... (4 Replies)
Discussion started by: mumuri
4 Replies

4. Programming

segmentation fault

What is segmentation fault(core dumped) (1 Reply)
Discussion started by: gokult
1 Replies

5. Programming

unable to create phonon application on Qt

Hi I am new to QT.I am running Qt 4.7 on Fedora 9.My Application crashes with the the following statements. on execution of return app.exec(); The inferior stopped because it received a signal from the Operating System. Signal name : SIGSEGV Signal meaning :Segmentation fault:wall: ... (2 Replies)
Discussion started by: sruthihsr
2 Replies

6. Programming

C. To segmentation fault or not to segmentation fault, that is the question.

Oddities with gcc, 2.95.3 for the AMIGA and 4.2.1 for MY current OSX 10.14.1... I am creating a basic calculator for the AMIGA ADE *NIX emulator in C as it does not have one. Below are two very condensed snippets of which I have added the results inside the each code section. IMPORTANT!... (11 Replies)
Discussion started by: wisecracker
11 Replies