Mstdlib-1.24.0
m_io_pipe.h
1/* The MIT License (MIT)
2 *
3 * Copyright (c) 2017 Monetra Technologies, LLC.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a copy
6 * of this software and associated documentation files (the "Software"), to deal
7 * in the Software without restriction, including without limitation the rights
8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 * copies of the Software, and to permit persons to whom the Software is
10 * furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 * THE SOFTWARE.
22 */
23
24#ifndef __M_IO_PIPE_H__
25#define __M_IO_PIPE_H__
26
27#include <mstdlib/base/m_defs.h>
28#include <mstdlib/base/m_types.h>
29#include <mstdlib/io/m_io.h>
30#include <mstdlib/io/m_event.h>
31
32__BEGIN_DECLS
33
34/*! \addtogroup m_io_pipe PIPE I/O functions
35 * \ingroup m_eventio_base
36 *
37 * Pipe's are uni-directional connected endpoints, meaning one endpoint
38 * is a write-only endpoint, and the other endpoint is a read-only endpoint.
39 * Pipes are often used for inter-process communication.
40 *
41 * @{
42 */
43
44typedef enum {
45 M_IO_PIPE_NONE = 0, /*!< No flags */
46 M_IO_PIPE_INHERIT_READ = 1 << 0, /*!< Read handle can be inherited by child */
47 M_IO_PIPE_INHERIT_WRITE = 1 << 1 /*!< Write handle can be inherited by child */
49
50
51/*! Create a pipe object
52 *
53 * \param[in] flags One or more M_io_pipe_flags_t flags controlling pipe creation
54 * \param[out] reader io object for reading.
55 * \param[out] writer io object for writing.
56 *
57 * \return Result.
58 */
59M_API M_io_error_t M_io_pipe_create(M_uint32 flags, M_io_t **reader, M_io_t **writer);
60
61/*! @} */
62
63__END_DECLS
64
65#endif
66
M_io_error_t M_io_pipe_create(M_uint32 flags, M_io_t **reader, M_io_t **writer)
M_io_pipe_flags_t
Definition: m_io_pipe.h:44
@ M_IO_PIPE_INHERIT_WRITE
Definition: m_io_pipe.h:47
@ M_IO_PIPE_INHERIT_READ
Definition: m_io_pipe.h:46
@ M_IO_PIPE_NONE
Definition: m_io_pipe.h:45
enum M_io_error M_io_error_t
Definition: m_io.h:93
struct M_io M_io_t
Definition: m_io.h:59