in reply to Re^2: Changing process name
in thread Changing process name
I use wxPerl (wxWidgets) to start subprocesses, so I can't use exec or system.
Then how do you "start subprocesses"?
The probablility is that under Win32, you could system 1, 'perl.exe script.pl'; as this does an asynchronous spawn. Ie. It returns immediately and so does not upset GUI message loops.
Similarly, you could probably use system 'perl script &'; under Linux to achieve the same end.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Changing process name
by Outaspace (Scribe) on Aug 26, 2006 at 12:57 UTC | |
by BrowserUk (Patriarch) on Aug 26, 2006 at 14:01 UTC | |
by Outaspace (Scribe) on Aug 26, 2006 at 16:49 UTC |