libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
Pipe.cxx
1// Linux
2#include <fcntl.h>
3#include <limits.h>
4
5// Cosmos
6#include <cosmos/error/ApiError.hxx>
7#include <cosmos/io/Pipe.hxx>
8
9namespace cosmos {
10
11const size_t Pipe::MAX_ATOMIC_WRITE = PIPE_BUF;
12
14 int ends[2];
15 if (::pipe2(ends, O_CLOEXEC | O_DIRECT) != 0) {
16 cosmos_throw (ApiError("pipe2()"));
17 }
18
19 m_read_end.setFD(FileNum{ends[0]});
20 m_write_end.setFD(FileNum{ends[1]});
21}
22
23} // end ns
Specialized exception type used when system APIs fail.
Definition ApiError.hxx:18
void setFD(const FileNum fd)
Assigns a new primitive file descriptor to the object.
Pipe()
Creates a pipe with both ends stored in the object.
Definition Pipe.cxx:13
FileNum
Primitive file descriptor.
Definition types.hxx:32