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