[LTP] [PATCH 28/31] rt_sigaction.h: Use sighandler_t instead of __sighandler_t
Khem Raj
raj.khem@gmail.com
Fri Jan 8 09:11:48 CET 2016
When _GNU_SOURCE is used then both typedefs are same and using
sighandler_t makes it work on musl too
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
include/lapi/rt_sigaction.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/lapi/rt_sigaction.h b/include/lapi/rt_sigaction.h
index 3a5a763..870918c 100644
--- a/include/lapi/rt_sigaction.h
+++ b/include/lapi/rt_sigaction.h
@@ -34,7 +34,7 @@
#define INVAL_SA_PTR ((void *)-1)
struct kernel_sigaction {
- __sighandler_t k_sa_handler;
+ sighandler_t k_sa_handler;
unsigned long sa_flags;
void (*sa_restorer) (void);
sigset_t sa_mask;
--
2.7.0
More information about the Ltp
mailing list