in reply to fork() emulation hack for OpenVMS
VMS fully supports tying the input and output handles to a spawned subprocess simultaneously, though I don't think anyone's gotten around to adding it to VMS perl (The infamous open FOO, "| process |" that doesn't work on Unix).
Probably the right thing to do is to spawn off subprocesses with normal magic open capturing the output of the child process and monitor the return filehandle. Or you could use a threaded perl, I suppose, if you don't want to do that.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: fork() emulation hack for OpenVMS
by agarsha (Acolyte) on Mar 09, 2003 at 19:09 UTC | |
|
Re: Re: fork() emulation hack for OpenVMS
by Anonymous Monk on Mar 09, 2003 at 19:09 UTC | |
by agarsha (Acolyte) on Mar 09, 2003 at 19:21 UTC | |
by Elian (Parson) on Mar 12, 2003 at 22:31 UTC |