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