blob: fc82ff9239a95be59267598e7396d1e01688513d [file] [log] [blame]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05001From 94557fb7e1293c61145c959b8c5ffecf4a2b1069 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Fri, 8 Jan 2016 07:24:44 +0000
4Subject: [PATCH 28/32] rt_sigaction.h: Use sighandler_t instead of
5 __sighandler_t
6
7When _GNU_SOURCE is used then both typedefs are same and using
8sighandler_t makes it work on musl too
9
10Signed-off-by: Khem Raj <raj.khem@gmail.com>
11---
12 include/lapi/rt_sigaction.h | 2 +-
13 testcases/kernel/syscalls/rt_sigsuspend/Makefile | 3 +++
14 2 files changed, 4 insertions(+), 1 deletion(-)
15
16diff --git a/include/lapi/rt_sigaction.h b/include/lapi/rt_sigaction.h
17index 3a5a763..870918c 100644
18--- a/include/lapi/rt_sigaction.h
19+++ b/include/lapi/rt_sigaction.h
20@@ -34,7 +34,7 @@
21 #define INVAL_SA_PTR ((void *)-1)
22
23 struct kernel_sigaction {
24- __sighandler_t k_sa_handler;
25+ sighandler_t k_sa_handler;
26 unsigned long sa_flags;
27 void (*sa_restorer) (void);
28 sigset_t sa_mask;
29diff --git a/testcases/kernel/syscalls/rt_sigsuspend/Makefile b/testcases/kernel/syscalls/rt_sigsuspend/Makefile
30index 37bc3a9..2ca7f7c 100644
31--- a/testcases/kernel/syscalls/rt_sigsuspend/Makefile
32+++ b/testcases/kernel/syscalls/rt_sigsuspend/Makefile
33@@ -19,4 +19,7 @@
34 top_srcdir ?= ../../../..
35
36 include $(top_srcdir)/include/mk/testcases.mk
37+
38+CFLAGS += -D_GNU_SOURCE
39+
40 include $(top_srcdir)/include/mk/generic_leaf_target.mk
41--
422.7.0
43