PrevUpHomeNext

Function make_pipe

boost::process::make_pipe

Synopsis

// In header: <boost/process/pipe.hpp>


pipe make_pipe(pipe_end_type source, pipe_end_type sink);

Description

Returns a pipe instance.

This is a helper function to instantiate boost::process::pipe.

[Note] 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.


PrevUpHomeNext