]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - tools/perf/util/values.h
Merge tag 'dma-mapping-4.13-2' of git://git.infradead.org/users/hch/dma-mapping
[mirror_ubuntu-bionic-kernel.git] / tools / perf / util / values.h
CommitLineData
8b40f521
JK
1#ifndef __PERF_VALUES_H
2#define __PERF_VALUES_H
8d513270 3
d944c4ee 4#include <linux/types.h>
8d513270
BG
5
6struct perf_read_values {
7 int threads;
8 int threads_max;
9 u32 *pid, *tid;
10 int counters;
11 int counters_max;
12 u64 *counterrawid;
13 char **countername;
14 u64 **value;
15};
16
89973506 17int perf_read_values_init(struct perf_read_values *values);
8d513270
BG
18void perf_read_values_destroy(struct perf_read_values *values);
19
89973506 20int perf_read_values_add_value(struct perf_read_values *values,
8d513270 21 u32 pid, u32 tid,
83a0944f 22 u64 rawid, const char *name, u64 value);
8d513270 23
9f866697
BG
24void perf_read_values_display(FILE *fp, struct perf_read_values *values,
25 int raw);
8d513270 26
8b40f521 27#endif /* __PERF_VALUES_H */