$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [boost] [gsoc] Boost.Process done
From: Boris Schaeling (boris_at_[hidden])
Date: 2010-10-07 17:53:40
On Thu, 07 Oct 2010 15:05:21 +0200, Klaim <mjklaim_at_[hidden]> wrote:
Hi Klaim,
> If I want my parent process to work but to be "notified" by the end of a
> child process execution, whatever the reason (runtime error, unmanged
> exception etc) ...
> ...if I understood correctly, I should use
> boost::process::status::async_wait()
> to achive this.
> Is that correct?
yes. You can also use boost::process::status::wait() if you want to wait
synchronously (this method blocks).
Boris
> [...]