|
I have a perl script with 2 threads. I define a signal handler (for HUP signal) in the main thread.
If my main thread is blocked on a join(), the HUP signals sent to the process using unix kill command are blocked until the join method terminate its execution.
Is there a way of doing a join system call that doesn't delay signals?
Thanks,
Samuel |