xref: /aosp_15_r20/external/bcc/libbpf-tools/cpudist.h (revision 387f9dfdfa2baef462e92476d413c7bc2470293e)
1 /* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */
2 #ifndef __CPUDIST_H
3 #define __CPUDIST_H
4 
5 #define TASK_COMM_LEN	16
6 #define MAX_SLOTS	36
7 
8 struct hist {
9 	__u32 slots[MAX_SLOTS];
10 	char comm[TASK_COMM_LEN];
11 };
12 
13 #endif // __CPUDIST_H
14