nixd
Loading...
Searching...
No Matches
PipedProc.h
Go to the documentation of this file.
1#pragma once
2
3#include "AutoCloseFD.h"
4
5#include <sys/types.h>
6
7namespace nixd::util {
8
9struct PipedProc {
10 pid_t PID;
11
12 // Piped descriptors
16};
17
18} // namespace nixd::util
File Descriptor RAII wrapper.
Definition AutoCloseFD.h:8
AutoCloseFD Stderr
Definition PipedProc.h:15
AutoCloseFD Stdout
Definition PipedProc.h:14
AutoCloseFD Stdin
Definition PipedProc.h:13