xref: /linux-tools/ebpf/libbpf-bootstrap/commargv.h (revision 221b0c1edbfd1ce7d1c890ca36c712a3208d6de0) !
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