pipeProcess not returning immediately

user1234 via Digitalmars-d-learn digitalmars-d-learn at puremagic.com
Fri Aug 25 23:24:26 PDT 2017


On Saturday, 26 August 2017 at 01:13:35 UTC, Johnson Jones wrote:
> I am running ffplay.exe and my application does not return 
> immediately from pipeProcess. I have to close ffplay for my 
> program to continue execution.

No process is asynchronous in std.process.

If you don't want to block your program then wrap it in a thread 
that checks periodically for termination.


More information about the Digitalmars-d-learn mailing list