1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef __PERF_VALUES_H 3#define __PERF_VALUES_H 4 5#include <linux/types.h> 6 7struct perf_read_values { 8 int threads; 9 int threads_max; 10 u32 *pid, *tid; 11 int counters; 12 int counters_max; 13 u64 *counterrawid; 14 char **countername; 15 u64 **value; 16}; 17 18int perf_read_values_init(struct perf_read_values *values); 19void perf_read_values_destroy(struct perf_read_values *values); 20 21int perf_read_values_add_value(struct perf_read_values *values, 22 u32 pid, u32 tid, 23 u64 rawid, const char *name, u64 value); 24 25void perf_read_values_display(FILE *fp, struct perf_read_values *values, 26 int raw); 27 28#endif /* __PERF_VALUES_H */ 29