boost::process::make_pipe
// In header: <boost/process/pipe.hpp> pipe make_pipe(pipe_end_type source, pipe_end_type sink);
Returns a pipe instance.
This is a helper function to instantiate boost::process::pipe
.
![]() |
Note |
---|---|
boost::process::make_pipe does not create a pipe. You must pass existing pipe ends to this function. If you want to create an anonymous pipe, call boost::process::create_pipe. |