To be honest... I really don't understand your code above. Sorry...
But then... Here is a complete program that might help you. It forks 2 children and collects the children's output in an array.
Be aware that there is no error handling (can't fork etc.) yet.
use warnings; use strict; my $children= 2; # How many to fork my @out; my $first_child; $|=1; # unbuffered output to see the effect my $pid= open($first_child, '-|'); if ($pid) { # parent: Collects all output @out= <$first_child>; } else { # child forks again and produces output my(@child, @childpid); for (my $i=0; $i<$children; ++$i) { $childpid[$i]= open($child[$i], '|-'); if ($childpid[$i]) { # parent # does nothing yet } else { # child produces some output my $j=10; while ($j--) { print "I'm child $i and will tell this $j more time(s) +\n"; sleep 1; } exit; } } foreach (@child) { # closing all child handles close $_; } exit; } print @out;

In reply to Re: Re: Re: IO::Select - is it right for this? by Skeeve
in thread IO::Select - is it right for this? by mcogan1966

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.