• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */
2 #ifndef __STATSNOOP_H
3 #define __STATSNOOP_H
4 
5 #define TASK_COMM_LEN	16
6 #define NAME_MAX	255
7 
8 struct event {
9 	__u64 ts_ns;
10 	__u32 pid;
11 	int ret;
12 	char comm[TASK_COMM_LEN];
13 	char pathname[NAME_MAX];
14 };
15 
16 #endif /* __STATSNOOP_H */
17