Change 27470 by [EMAIL PROTECTED] on 2006/03/11 10:16:04
Subject: [PATCH] Sync up embed.fnc and doio.c
From: [EMAIL PROTECTED] (Andy Lester)
Message-ID: <[EMAIL PROTECTED]>
Date: Sat, 11 Mar 2006 01:13:38 -0600
Affected files ...
... //depot/perl/embed.fnc#330 edit
... //depot/perl/proto.h#677 edit
Differences ...
==== //depot/perl/embed.fnc#330 (text) ====
Index: perl/embed.fnc
--- perl/embed.fnc#329~27459~ 2006-03-10 03:31:14.000000000 -0800
+++ perl/embed.fnc 2006-03-11 02:16:04.000000000 -0800
@@ -180,7 +180,7 @@
p |OP* |die_where |NULLOK const char* message|STRLEN msglen
Ap |void |dounwind |I32 cxix
pmb |bool |do_aexec |NULLOK SV* really|NN SV** mark|NN SV** sp
-p |bool |do_aexec5 |NULLOK SV* really|NN SV** mark|NN SV** sp|int
fd|int flag
+p |bool |do_aexec5 |NULLOK SV* really|NN SV** mark|NN SV** sp|int
fd|int do_report
Ap |int |do_binmode |NN PerlIO *fp|int iotype|int mode
p |void |do_chop |NN SV* asv|NN SV* sv
Ap |bool |do_close |NN GV* gv|bool not_implicit
@@ -198,7 +198,7 @@
Ap |int |do_spawn_nowait|NN char* cmd
#endif
#if !defined(WIN32)
-p |bool |do_exec3 |NN const char* cmd|int fd|int flag
+p |bool |do_exec3 |NN const char* cmd|int fd|int do_report
#endif
p |void |do_execfree
#if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
==== //depot/perl/proto.h#677 (text+w) ====
Index: perl/proto.h
--- perl/proto.h#676~27459~ 2006-03-10 03:31:14.000000000 -0800
+++ perl/proto.h 2006-03-11 02:16:04.000000000 -0800
@@ -389,7 +389,7 @@
__attribute__nonnull__(pTHX_2)
__attribute__nonnull__(pTHX_3); */
-PERL_CALLCONV bool Perl_do_aexec5(pTHX_ SV* really, SV** mark, SV** sp,
int fd, int flag)
+PERL_CALLCONV bool Perl_do_aexec5(pTHX_ SV* really, SV** mark, SV** sp,
int fd, int do_report)
__attribute__nonnull__(pTHX_2)
__attribute__nonnull__(pTHX_3);
@@ -431,7 +431,7 @@
#endif
#if !defined(WIN32)
-PERL_CALLCONV bool Perl_do_exec3(pTHX_ const char* cmd, int fd, int flag)
+PERL_CALLCONV bool Perl_do_exec3(pTHX_ const char* cmd, int fd, int
do_report)
__attribute__nonnull__(pTHX_1);
#endif
End of Patch.