Am 21.01.2020 um 22:04 schrieb Marco van de Voort:
Op 2020-01-21 om 21:40 schreef Graeme Geldenhuys:
ie: I want to launch a new application in a separate OS process and
then
forget about it.
This is the responsibility of the callee I think, to daemonize and cut
the cord so to speak.
Indee
On Tue, Jan 21, 2020 at 9:41 PM Graeme Geldenhuys
wrote:
> 2. Anybody else experience this zombie processes hanging
> around in *nix systems? Is there any option in TProcess
> to prevent that?
https://bugs.freepascal.org/view.php?id=11797
--
Bart
Op 2020-01-21 om 21:40 schreef Graeme Geldenhuys:
ie: I want to launch a new application in a separate OS process and then
forget about it.
This is the responsibility of the callee I think, to daemonize and cut
the cord so to speak.
___
fpc-pa
Hi,
In fgGUI applications I often launch other applications. eg: The help
viewer etc. In such cases, I simply want to launch the application and
then forget about it. I have no need to read any stdout etc.
I've been using TProcess for this task as follows:
p := TProcess.Create(nil);
try