Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 706128
Collapse All | Expand All

(-)a/boost/process/async_pipe.hpp (+2 lines)
Lines 47-52 public: Link Here
47
     */
47
     */
48
    typedef platform_specific handle_type;
48
    typedef platform_specific handle_type;
49
49
50
    typedef typename handle_type::executor_type executor_type;
51
50
    /** Construct a new async_pipe, does automatically open the pipe.
52
    /** Construct a new async_pipe, does automatically open the pipe.
51
     * Initializes source and sink with the same io_context.
53
     * Initializes source and sink with the same io_context.
52
     * @note Windows creates a named pipe here, where the name is automatically generated.
54
     * @note Windows creates a named pipe here, where the name is automatically generated.
(-)a/boost/process/detail/posix/async_pipe.hpp (+1 lines)
Lines 23-28 class async_pipe Link Here
23
public:
23
public:
24
    typedef int native_handle_type;
24
    typedef int native_handle_type;
25
    typedef ::boost::asio::posix::stream_descriptor handle_type;
25
    typedef ::boost::asio::posix::stream_descriptor handle_type;
26
    typedef typename handle_type::executor_type executor_type;
26
27
27
    inline async_pipe(boost::asio::io_context & ios) : async_pipe(ios, ios) {}
28
    inline async_pipe(boost::asio::io_context & ios) : async_pipe(ios, ios) {}
28
29
(-)a/boost/process/detail/windows/async_pipe.hpp (-1 / +1 lines)
Lines 48-53 class async_pipe Link Here
48
public:
48
public:
49
    typedef ::boost::winapi::HANDLE_ native_handle_type;
49
    typedef ::boost::winapi::HANDLE_ native_handle_type;
50
    typedef ::boost::asio::windows::stream_handle   handle_type;
50
    typedef ::boost::asio::windows::stream_handle   handle_type;
51
    typedef typename handle_type::executor_type executor_type;
51
52
52
    async_pipe(boost::asio::io_context & ios) : async_pipe(ios, ios, make_pipe_name(), true) {}
53
    async_pipe(boost::asio::io_context & ios) : async_pipe(ios, ios, make_pipe_name(), true) {}
53
    async_pipe(boost::asio::io_context & ios_source, boost::asio::io_context & ios_sink)
54
    async_pipe(boost::asio::io_context & ios_source, boost::asio::io_context & ios_sink)
54
- 

Return to bug 706128