I need to send a signal to different process for some real-time communication, however the process belongs to different user.
For example
PID user group
1234 foo foobar
4321 bar foobar
I want process 1234 and 4321 to be able to send signals to each other?
If I was using sockets or pipes I could set their mask to rw-rw-r--
and communication would work. However I need to do the communication using signals (ordinary or real time, not important).
Is there a way to do it?