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)
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)
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)
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)
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)