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