Show using waitpid in IPC::Open[23] SYNOPSIS
authorbrian d foy <brian.d.foy@gmail.com>
Sun, 21 Sep 2008 15:23:47 +0000 (10:23 -0500)
committerSteve Peters <steve@fisharerojo.org>
Tue, 23 Sep 2008 13:37:54 +0000 (13:37 +0000)
Message-ID: <210920081523471499%brian.d.foy@gmail.com>

p4raw-id: //depot/perl@34408

lib/IPC/Open2.pm
lib/IPC/Open3.pm

index ecd1e7f..65a5d8b 100644 (file)
@@ -28,6 +28,9 @@ IPC::Open2, open2 - open a process for both reading and writing
       # or without using the shell
     $pid = open2($chld_out, $chld_in, 'some', 'cmd', 'and', 'args');
 
+    waitpid( $pid, 0 );
+    my $child_exit_status = $? >> 8;
+
 =head1 DESCRIPTION
 
 The open2() function runs the given $cmd and connects $chld_out for
index f934e89..220b945 100644 (file)
@@ -26,6 +26,9 @@ IPC::Open3, open3 - open a process for reading, writing, and error handling
     $pid = open3($wtr, $rdr, $err,
                    'some cmd and args', 'optarg', ...);
 
+    waitpid( $pid, 0 );
+    my $child_exit_status = $? >> 8;
+
 =head1 DESCRIPTION
 
 Extremely similar to open2(), open3() spawns the given $cmd and