Home | Libraries | People | FAQ | More |
boost::process::spawn
// In header: <boost/process/spawn.hpp> template<typename... Args> void spawn(Args &&... args);
Launch a process and detach it. Returns no handle.
This function starts a process and immediately detaches it. It thereby prevents the system from creating a zombie process, but will also cause the system to be unable to wait for the child to exit.
Note | |
---|---|
This will set |
Warning | |
---|---|
This function does not allow asynchronous operations, since it cannot wait for the end of the process. It will fail to compile if a reference to |