| 34 | |
| 35 | template <class Fn, class... Args> |
| 36 | Process(Fn fn, Args... args) : |
| 37 | Process() |
| 38 | { |
| 39 | do_fork(function<int()>([&]() { return fn(args...); })); |
| 40 | } |
| 41 | |
| 42 | Process(const Process &) = delete; |
| 43 | Process(Process &&move_from); |
nothing calls this directly
no outgoing calls
no test coverage detected