CX Framework
Cross-platform C utility framework
Loading...
Searching...
No Matches
unix_sys_processobj.cxh
1#include <cx/sys/processobj.cxh>
2
3[methodprefix _unixprocobj] class UnixProcess extends Process {
4 /// @brief Linux pidfd for the process, or -1
5 ///
6 /// FreeBSD has no equivalent it can use here and keys its kqueue registration on the pid
7 /// instead, so this stays -1 there.
8 int waitfd;
9
10 factory create();
11 destroy();
12}