From 35f35d4351e02e428a37976850dcc8a2373bce93 Mon Sep 17 00:00:00 2001 From: Arend Van Spriel Date: Thu, 9 Mar 2017 12:57:33 +0000 Subject: backports: add dummy include/linux/sched/signal.h Simply including linux/sched.h for older kernels not carrying this file. This new include file was introduced by commit 3f07c0144132 ("sched/headers: Prepare for new header dependencies before moving code to "). Signed-off-by: Arend van Spriel Signed-off-by: Johannes Berg --- backport/backport-include/linux/sched/signal.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 backport/backport-include/linux/sched/signal.h diff --git a/backport/backport-include/linux/sched/signal.h b/backport/backport-include/linux/sched/signal.h new file mode 100644 index 00000000..ec89925d --- /dev/null +++ b/backport/backport-include/linux/sched/signal.h @@ -0,0 +1,10 @@ +#ifndef _BACKPORT_LINUX_SCHED_SIGNAL_H +#define _BACKPORT_LINUX_SCHED_SIGNAL_H + +#if LINUX_VERSION_IS_LESS(4, 11, 0) +#include +#else +#include_next +#endif + +#endif /* _BACKPORT_LINUX_SCHED_SIGNAL_H */ -- cgit v1.2.3