Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

"Operation now in progress" problem with a pipe

by mje (Curate)
on Nov 21, 2016 at 15:54 UTC ( [id://1176256]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
            pipe($child_reader, $child_writer);
            binmode($child_reader, ":encoding(UTF-8)");
    ...
                child_writer();
                exit;
            }
    
  2. or download this
        my $select = IO::Select->new();
        $select->add(fileno $child_reader);
    ...
                }
            }
        }
    
  3. or download this
            # $msg is the message to send, it is guaranteed < PIPE_BUF and
    + ends in \r\n
            my $sigpipe = 0;
    ...
            } else {
                warn "Write to child_writer failed - $!";
            }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://1176256]
Approved by stevieb
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (None)
    As of 2024-04-25 00:10 GMT
    Sections?
    Information?
    Find Nodes?
    Leftovers?
      Voting Booth?

      No recent polls found