The header files are usually based on code from lib/. This commit copies relevant license headers from lib/ to include/ to keep things consistent. The very generic things (e.g. MBR definitions) are always public domain. Fixes: https://github.com/util-linux/util-linux/issues/2010 Signed-off-by: Karel Zak <kzak@redhat.com>
35 lines
878 B
C
35 lines
878 B
C
/*
|
|
* No copyright is claimed. This code is in the public domain; do with
|
|
* it what you wish.
|
|
*/
|
|
#ifndef UTIL_LINUX_PIDFD_UTILS
|
|
#define UTIL_LINUX_PIDFD_UTILS
|
|
|
|
#ifdef HAVE_SYS_SYSCALL_H
|
|
# include <sys/syscall.h>
|
|
# if defined(SYS_pidfd_send_signal) && defined(SYS_pidfd_open)
|
|
# ifdef HAVE_SYS_PIDFD_H
|
|
# include <sys/pidfd.h>
|
|
# endif
|
|
# include <sys/types.h>
|
|
# ifndef HAVE_PIDFD_SEND_SIGNAL
|
|
# include <sys/wait.h>
|
|
static inline int pidfd_send_signal(int pidfd, int sig, siginfo_t *info,
|
|
unsigned int flags)
|
|
{
|
|
return syscall(SYS_pidfd_send_signal, pidfd, sig, info, flags);
|
|
}
|
|
# endif
|
|
|
|
# ifndef HAVE_PIDFD_OPEN
|
|
static inline int pidfd_open(pid_t pid, unsigned int flags)
|
|
{
|
|
return syscall(SYS_pidfd_open, pid, flags);
|
|
}
|
|
# endif
|
|
|
|
# define UL_HAVE_PIDFD 1
|
|
|
|
# endif /* SYS_pidfd_send_signal */
|
|
#endif /* HAVE_SYS_SYSCALL_H */
|
|
#endif /* UTIL_LINUX_PIDFD_UTILS */
|