http://qs321.pair.com?node_id=932274


in reply to Win32: Starting and stopping processes (part 1)

Ostensibly, this is effectively equivalent and should work fine -- though I'm less sure about "DGRAM sockets" -- on windows:

#! perl -slw use strict; my @pids; $SIG{'INT'} = sub { kill 'INT', @pids; }; push @pids, system 1, $_ for qw[ ctrlman.pl pidman.pl progman.pl webman.pl ]; while( 1 ) { ## do stuff; }

That said, I'd almost certainly use threads & queues rather than processes and sockets.


With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.