Re: Avoid zombie processes with std.process

2016-09-22 Thread Brian via Digitalmars-d
On Wednesday, 24 August 2016 at 15:48:24 UTC, eugene wrote: On Wednesday, 24 August 2016 at 11:04:58 UTC, FreeSlave wrote: Are there plans on adding something like spawnProcessDetached that would start processes completely independent from parent? I.e. in other process group and, what is

Re: Avoid zombie processes with std.process

2016-08-25 Thread FreeSlave via Digitalmars-d
On Thursday, 25 August 2016 at 14:53:30 UTC, Shachar Shemesh wrote: On 25/08/16 11:46, FreeSlave wrote: On Thursday, 25 August 2016 at 07:32:29 UTC, Shachar Shemesh wrote: On 24/08/16 14:04, FreeSlave wrote: Are there plans on adding something like spawnProcessDetached that would start

Re: Avoid zombie processes with std.process

2016-08-25 Thread Shachar Shemesh via Digitalmars-d
On 25/08/16 11:46, FreeSlave wrote: On Thursday, 25 August 2016 at 07:32:29 UTC, Shachar Shemesh wrote: On 24/08/16 14:04, FreeSlave wrote: Are there plans on adding something like spawnProcessDetached that would start processes completely independent from parent? I.e. in other process group

Re: Avoid zombie processes with std.process

2016-08-25 Thread FreeSlave via Digitalmars-d
On Thursday, 25 August 2016 at 07:32:29 UTC, Shachar Shemesh wrote: On 24/08/16 14:04, FreeSlave wrote: Are there plans on adding something like spawnProcessDetached that would start processes completely independent from parent? I.e. in other process group and, what is important, with no need

Re: Avoid zombie processes with std.process

2016-08-25 Thread FreeSlave via Digitalmars-d
On Wednesday, 24 August 2016 at 15:48:24 UTC, eugene wrote: On Wednesday, 24 August 2016 at 11:04:58 UTC, FreeSlave wrote: Are there plans on adding something like spawnProcessDetached that would start processes completely independent from parent? I.e. in other process group and, what is

Re: Avoid zombie processes with std.process

2016-08-25 Thread Shachar Shemesh via Digitalmars-d
On 24/08/16 14:04, FreeSlave wrote: Are there plans on adding something like spawnProcessDetached that would start processes completely independent from parent? I.e. in other process group and, what is important, with no need for wait. On Posix that could be done via double fork technique. Not

Re: Avoid zombie processes with std.process

2016-08-24 Thread Basile B. via Digitalmars-d
On Wednesday, 24 August 2016 at 11:04:58 UTC, FreeSlave wrote: Are there plans on adding something like spawnProcessDetached that would start processes completely independent from parent? I.e. in other process group and, what is important, with no need for wait. On Posix that could be done

Re: Avoid zombie processes with std.process

2016-08-24 Thread eugene via Digitalmars-d
On Wednesday, 24 August 2016 at 11:04:58 UTC, FreeSlave wrote: Are there plans on adding something like spawnProcessDetached that would start processes completely independent from parent? I.e. in other process group and, what is important, with no need for wait. On Posix that could be done