MCPcopy Create free account
hub / github.com/Zygo/bees / Process

Method Process

include/crucible/process.h:36–40  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected