• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */
2 #ifndef __RUNQLEN_H
3 #define __RUNQLEN_H
4 
5 #define MAX_CPU_NR	128
6 #define MAX_SLOTS	32
7 
8 struct hist {
9 	__u32 slots[MAX_SLOTS];
10 };
11 
12 #endif /* __RUNQLEN_H */
13