xref: /linux-tools/ebpf/kernel-samples-bpf/syscall_tp.h (revision 7889a9fe3f6cd23238c94fad4e1c698d5585c3fe)
1 #ifndef __SYSCALL_TP_H_
2 #define __SYSCALL_TP_H_
3 
4 struct open_event{
5     int pid;
6     char fname[(1<<6)-sizeof(int)];
7 };
8 
9 #endif /* __SYSCALL_TP_H_ */
10