Hello monks. I am trying to run the debugger on a perl 5.8.5 script that forks several child processes. The debugger dutifully spawns new xterms for each of the children, but that's actually causing me problems. I need to break at a point in the parent process that is after the forks, but the children send messages via socket, so they are timing sensitive and I can't hit "c" in each window before one of them croaks and dies.
Is there a way to tell the debugger not to give me a window for the child processes, and instead just run them as though they weren't using the debugger?