WIP FPC-III support
[linux/fpc-iii.git] / tools / perf / util / values.h
blob8c41f22f42cfbbe9a3cb1ff17ec7a7b4cf0dd46f
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __PERF_VALUES_H
3 #define __PERF_VALUES_H
5 #include <linux/types.h>
7 struct 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;
18 int perf_read_values_init(struct perf_read_values *values);
19 void perf_read_values_destroy(struct perf_read_values *values);
21 int perf_read_values_add_value(struct perf_read_values *values,
22 u32 pid, u32 tid,
23 u64 rawid, const char *name, u64 value);
25 void perf_read_values_display(FILE *fp, struct perf_read_values *values,
26 int raw);
28 #endif /* __PERF_VALUES_H */