-
Notifications
You must be signed in to change notification settings - Fork 571
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IPC::Open3 calls die, not exit, on exec failure #872
Comments
From davidb@fundsxpress.comIn IPC::Open3.pm, version 1.0101, line 188/189, there is the following exec @cmd This code is executed after the process has forked. This has the large This caused a big problem for us, because we have code that runs in a An easy solution to this problem is to make line 188 of Open3.pm print Perl Info
|
From [Unknown Contact. See original ticket]This bug appears to still be active. In IPC::Open3.pm, version 1.0101, line 188/189, there is the following exec @cmd This code is executed after the process has forked. This has the large This caused a big problem for us, because we have code that runs in a An easy solution to this problem is to make line 188 of Open3.pm print |
From [Unknown Contact. See original ticket]On Mon, Dec 11, 2000 at 10:53:36PM -0500, Stephen P. Potter wrote:
If there are things waiting to be DESTROYed that will have effects I've had to resort to "kill 9, $$" in the past to work around this, thus Is there any way to exit perl and skip DESTROYs? Or, better yet, to Both of these came up most recently in the vcp stuff I'm trying to use - Barrie |
From @tonycozOn Tue, 12 Dec 2000, barries wrote:
use POSIX "_exit"; prints nothing. Maybe you want _exit(). Tony |
From [Unknown Contact. See original ticket]Barries <barries@slaysys.com> writes:
I have had some success with exec(@list) || exec("/bin/false"); |
From @smpeters
|
@smpeters - Status changed from 'open' to 'resolved' |
Migrated from rt.perl.org#1803 (status was 'resolved')
Searchable as RT1803$
The text was updated successfully, but these errors were encountered: