I want to send a signal from a process to a thread that is created from another process (that have not created the thread.
What I know about this that:
raise: sends signal to same process
pthread_kill can send singal to a thread from same prcess, i.e that created that thread. you cannot use pthread_kill to send a signal to thread from another process.
kill sends signal to a process
Is there any way to send signal to a thread from another process?
Hope I am clear!!! NOTE: I am new to unix and threading