Is there a way to make it so when I fork in the program, that the parent is not waiting for children to finish? I have a gui running which requests some things from the server. The things is that the connection to the server is very slow, so the gui is completely frozen why awaiting the connection. Is there a way that I can have the child processes do their thing with the server while the parent process is updating the gui? Thanks.
P.S. I have a constraint of using Perl 5.8. Can't upgrade to 5.14 for technical reasons (if I could, I wouldn't be stuck).