Re: Multithreading and signals on linux

From: Robert Hancock
Date: Tue Aug 29 2006 - 21:43:23 EST


Shrikrishna Khare wrote:
Hi,

Am using pthread_kill to send SIGUSR1 from thread t1 to thread t2.
However, I am unable to have "different" signal handlers for threads t1
and t2 for same signal SIGUSR1.
I have ensured that I set the signal handler for t1 and t2
separately in different functions. Could anyone please tell me if I am
missing on something?

The signal will be handled in the thread specified, however signal handlers are global to the process. You cannot have different signal handlers for different threads in the same process. This is the way POSIX pthreads are specified to work.

--
Robert Hancock Saskatoon, SK, Canada
To email, remove "nospam" from hancockr@xxxxxxxxxxxxx
Home Page: http://www.roberthancock.com/

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/