xref: /aosp_15_r20/external/bcc/libbpf-tools/syscount.h (revision 387f9dfdfa2baef462e92476d413c7bc2470293e)
1 // SPDX-License-Identifier: GPL-2.0
2 // Copyright (c) 2020 Anton Protopopov
3 #ifndef __SYSCOUNT_H
4 #define __SYSCOUNT_H
5 
6 #define MAX_ENTRIES 8192
7 
8 #define TASK_COMM_LEN 16
9 
10 struct data_t {
11 	__u64 count;
12 	__u64 total_ns;
13 	char comm[TASK_COMM_LEN];
14 };
15 
16 #endif /* __SYSCOUNT_H */
17