xref: /linux-tools/ebpf/libbpf-bootstrap/commargv.h (revision de922be4e919572d28577568db563e691d5e7702)
1 #ifndef __SYSCALL_TP_H_
2 #define __SYSCALL_TP_H_
3 
4 #define MAXPN 32
5 struct comm_event{
6     int pid, n;
7     char argv[MAXPN][32];
8 };
9 
10 #endif /* __SYSCALL_TP_H_ */
11