in reply to Re: Background process
in thread Background process
Wowzers. I hadn't seen that before and finding the documentation for it took Google's help: perlport.
As an optimization, may not call the command shell specified in $ENV{PERL5SHELL}. system(1, @args) spawns an external process and immediately returns its process designator, without waiting for it to terminate. Return value may be used subsequently in wait or waitpid. Failure to spawn() a subprocess is indicated by setting $? to "255 << 8". $? is set in a way compatible with Unix (i.e. the exitstatus of the subprocess is obtained by "$?>> 8", as described in the documentation). (Win32)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Background process
by BrowserUk (Patriarch) on Jan 11, 2011 at 19:15 UTC | |
by DeadPoet (Scribe) on Jan 11, 2011 at 19:40 UTC |