blob: 2fa967e1a88aaa0a4a4f6dfe98517be6c08c8f68 [file] [log] [blame]
John Kacur8b40f522009-09-24 18:02:18 +02001#ifndef __PERF_VALUES_H
2#define __PERF_VALUES_H
Brice Goglin8d513272009-08-07 13:55:24 +02003
4#include "types.h"
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
17void perf_read_values_init(struct perf_read_values *values);
18void perf_read_values_destroy(struct perf_read_values *values);
19
20void perf_read_values_add_value(struct perf_read_values *values,
21 u32 pid, u32 tid,
Ingo Molnar83a09442009-08-15 12:26:57 +020022 u64 rawid, const char *name, u64 value);
Brice Goglin8d513272009-08-07 13:55:24 +020023
Brice Goglin9f866692009-08-10 15:26:32 +020024void perf_read_values_display(FILE *fp, struct perf_read_values *values,
25 int raw);
Brice Goglin8d513272009-08-07 13:55:24 +020026
John Kacur8b40f522009-09-24 18:02:18 +020027#endif /* __PERF_VALUES_H */