The sigprocmask tag has no wiki summary.
1
vote
1answer
170 views
How to block signals in C?
I'm trying to create a programa that blocks the signal SIGUSR1 and the it unblocks the signal.
In the middle I want to see that te signal is blocked using sigpending. But it always says that the ...
2
votes
2answers
317 views
sigprocmask during signal's execution
I'm currently researching using sigprocmask to block certain signals (in this case, SIGALRM and SIGCHLD) when a critical segment of code is executing. Both of the signal handlers associated with these ...
0
votes
1answer
131 views
sigprocmask resulting in main process getting stuck
I have multi threaded code which used sigprocmask fn. Its known that use of this call is unspecified in Multi threaded program which I understand and i will remove this call. However, the issue that I ...
0
votes
2answers
2k views
sigprocmask( ) blocking signals in UNIX
i have written a small piece of code. This code first blocks the {SIGSEGV}, then adds SIGRTMIN to the same set. So, my final signal set is, {SIGSEGV,SIGRTMIN}. Thus, if i use SIG_UNBLOCK, as per my ...
0
votes
1answer
137 views
sigprocmask not working
I'm using sigprocmask as follows:
void mask(){
sigset_t new_set,old_set;
sigemptyset(&new_set);
sigaddset(&new_set,SIGALRM);
sigprocmask(SIG_BLOCK, &new_set, ...
1
vote
1answer
171 views
sigprocmask() causing segfault
Are there any well known reasons for sigprocmask() to segfault when used in a multithreaded application?
I have an application that creates multiple threads using clone(). I have determined that for ...
12
votes
1answer
9k views
Set and Oldset in sigprocmask()
I haven't completely understood how to use sigprocmask(). Particularly how the set and oldset in its syntax work and how to use them.
int sigprocmask(int how, const sigset_t *set, sigset_t *oldset);
...