1 // SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) 2 /* Copyright (c) 2021~2022 Hengqi Chen */ 3 #ifndef __SIGSNOOP_H 4 #define __SIGSNOOP_H 5 6 #define TASK_COMM_LEN 16 7 8 struct event { 9 __u32 pid; 10 __u32 tpid; 11 int sig; 12 int ret; 13 char comm[TASK_COMM_LEN]; 14 }; 15 16 #endif /* __SIGSNOOP_H */ 17