1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #undef TRACE_SYSTEM 3 #define TRACE_SYSTEM signal 4 #undef TRACE_INCLUDE_PATH 5 #define TRACE_INCLUDE_PATH trace/hooks 6 #if !defined(_TRACE_HOOK_SIGNAL_H) || defined(TRACE_HEADER_MULTI_READ) 7 #define _TRACE_HOOK_SIGNAL_H 8 #include <trace/hooks/vendor_hooks.h> 9 10 struct task_struct; 11 DECLARE_HOOK(android_vh_do_send_sig_info, 12 TP_PROTO(int sig, struct task_struct *killer, struct task_struct *dst), 13 TP_ARGS(sig, killer, dst)); 14 DECLARE_HOOK(android_vh_exit_signal, 15 TP_PROTO(struct task_struct *task), 16 TP_ARGS(task)); 17 DECLARE_HOOK(android_vh_killed_process, 18 TP_PROTO(struct task_struct *killer, struct task_struct *dst, bool *reap), 19 TP_ARGS(killer, dst, reap)); 20 #endif /* _TRACE_HOOK_SIGNAL_H */ 21 /* This part must be outside protection */ 22 #include <trace/define_trace.h> 23