Skip to content
Advertisement

Which thread handles the signal?

I have 2 threads(thread1 and thread2). And I have signal disposition for SIGINT. Whenever SIGINT occurs thread 2 should handle the signal. For that I wrote below program

JavaScript

I compiled and and run the program. for every 1 second “thread1 active” is printing and for every 3 seconds “thread2 active” is printing.

Now I generated SIGINT. But its printing “thread1 active” and “thread2 active” messages like above. Again I generated SIGINT, now for every 3 seconds only “thread2 active” message is printing. Again I generated SIGINT, now all threads are blocked.

So I understood, for first time main thread executing signal handler. For second time thread1 executing handler and lastly thread2 executing signal handler.

How I can write the code like whenever signal occurs, only thread2 have to execute my signal handler?

Advertisement

Answer

If you send a signal to a process, which thread in the process will handle this signal is undetermined.

According to pthread(7):

POSIX.1 also requires that threads share a range of other attributes (i.e., these attributes are process-wide rather than per-thread):

– signal dispositions

POSIX.1 distinguishes the notions of signals that are directed to the process as a whole and signals that are directed to individual threads. According to POSIX.1, a process-directed signal (sent using kill(2), for example) should be handled by a single, arbitrarily selected thread within the process.


If you want a dedicated thread in your process to handle some signals, here is an example from pthread_sigmask(3) shows you how to do it:

The program below blocks some signals in the main thread, and then creates a dedicated thread to fetch those signals via sigwait(3). The following shell session demonstrates its use:

JavaScript

Program source

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement