Hi, I'm still a Perl newbie and am writing an app using Gtk2 which needs to perform multiple file copies at the same time (1 souce, n destinations). I'm not having any problems with the actual copy function, but rather correctly spawning them in parallel. Threads if not detached or joined use all up all of the ram after a few runs, but detaching or joining them crash the app. The threads don't contain or need to touch any Gtk object. I guess threads isn't the way to go. I've never used POE, should I be looking at it? Any advice or direction would be fantastic as I've struggled for days with this issue.
Using perl 5.8.8. Thanks!!