1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __PERF_CPUTOPO_H
3 #define __PERF_CPUTOPO_H
5 #include <linux/types.h>
13 char **thread_siblings
;
16 struct numa_topology_node
{
23 struct numa_topology
{
25 struct numa_topology_node nodes
[];
28 struct cpu_topology
*cpu_topology__new(void);
29 void cpu_topology__delete(struct cpu_topology
*tp
);
31 struct numa_topology
*numa_topology__new(void);
32 void numa_topology__delete(struct numa_topology
*tp
);
34 #endif /* __PERF_CPUTOPO_H */