This patch fixes this build error with clang. testcases/kernel/syscalls/rt_sigaction/../../../../include/ltp_signal.h:85: undefined reference to `handler_h'
Signed-off-by: Vinson Lee <[email protected]> --- include/ltp_signal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ltp_signal.h b/include/ltp_signal.h index 1ac6f70..093059f 100644 --- a/include/ltp_signal.h +++ b/include/ltp_signal.h @@ -69,7 +69,7 @@ struct kernel_sigaction { void (*restore_rt) (void); -inline void +void handler_h (int signal) { return; -- 1.7.9.5 ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ Ltp-list mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ltp-list
