1 #ifndef _spin_private_pipe_h
2 #define _spin_private_pipe_h
4 #include "../Details/prologue.h"
17 int getReadDescriptor() const { return fds_
[0]; }
18 int getWriteDescriptor() const { return fds_
[1]; }
20 std::size_t read(void * buffer
, std::size_t count
);
21 void write(const void * buffer
, std::size_t count
);
25 Pipe
& operator=(const Pipe
&);