libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
pidfd.h
1#if __has_include(<sys/pidfd.h>)
2// Linux
3# include <sys/pidfd.h>
4#else
5
6// Linux
7# include <fcntl.h>
8
9// cosmos
10# include <cosmos/dso_export.h>
11# include <cosmos/proc/types.hxx>
12
13# ifndef PIDFD_NONBLOCK
14# define PIDFD_NONBLOCK O_NONBLOCK
15# endif
16
17// This is actually an enum, extending that transparently isn't possible, so
18// cast to idtype_t. This breaks if the enum value is actually declared after
19// all ... to avoid that we'd need a configure time check.
20# define P_PIDFD (idtype_t)3
21
22COSMOS_API int pidfd_getfd(int pidfd, int targetfd, unsigned int flags) noexcept(true);
23
24COSMOS_API int pidfd_open(pid_t pid, unsigned int flags) noexcept(true);
25
26COSMOS_API int pidfd_send_signal(int pidfd, int sig, siginfo_t *info, unsigned int flags) noexcept(true);
27
28#endif