summaryrefslogtreecommitdiffstats
path: root/kernel/tests/include/lapi/pidfd_send_signal.h
blob: 8352d2adf7875617d19d675e972cb7d26e69fc70 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * Copyright (c) 2019 SUSE LLC
 * Author: Christian Amann <camann@suse.com>
 */

#ifndef PIDFD_SEND_SIGNAL_H
#define PIDFD_SEND_SIGNAL_H

#include "tst_test.h"
#include "lapi/syscalls.h"

static inline void pidfd_send_signal_supported(void)
{
	/* allow the tests to fail early */
	tst_syscall(__NR_pidfd_send_signal);
}

#ifndef HAVE_PIDFD_SEND_SIGNAL
static int pidfd_send_signal(int pidfd, int sig, siginfo_t *info,
				 unsigned int flags)
{
	return tst_syscall(__NR_pidfd_send_signal, pidfd, sig, info, flags);
}
#endif /* HAVE_PIDFD_SEND_SIGNAL */

#endif /* PIDFD_SEND_SIGNAL_H */