Without going into details, I am working on a program consisting of several separate processes running on embedded QNX RTOS. They do not have a parent-child relationship, they are all generated using spawnlp(P_NOWAIT, ...), and they all communicate with each other using the IPC mechanism provided by the OS.
When I debug GDB and I hit a breakpoint in the process, all of my threads are paused, which is great. But is there a way to make it pause my other processes? Right now, what happens, all other processes continue to work while my process is pausing, and so all IPC queues are filling up, etc. Etc.
Thanks in advance,
HF
source
share