aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util/evsel.h
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2011-03-11 03:28:31 -0500
committerIngo Molnar <mingo@elte.hu>2011-03-11 03:28:31 -0500
commit137ee20ddd10fdc20600c389fe63edab0c39cb1a (patch)
treef2f9db93cbbe1929d2c3380658a546a748181dc9 /tools/perf/util/evsel.h
parent4a0b1665db09cf2da9ad7d0f12da386373c10bfa (diff)
parent1c0b04d10bbe35279c50e3b36cf5b8ec2a0050d8 (diff)
Merge branch 'perf/core' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux-2.6 into perf/core
Diffstat (limited to 'tools/perf/util/evsel.h')
-rw-r--r--tools/perf/util/evsel.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/tools/perf/util/evsel.h b/tools/perf/util/evsel.h
index 281b60e5fc7b..6710ab538342 100644
--- a/tools/perf/util/evsel.h
+++ b/tools/perf/util/evsel.h
@@ -49,12 +49,17 @@ struct perf_evsel {
49 struct perf_event_attr attr; 49 struct perf_event_attr attr;
50 char *filter; 50 char *filter;
51 struct xyarray *fd; 51 struct xyarray *fd;
52 struct xyarray *id; 52 struct xyarray *sample_id;
53 u64 *id;
53 struct perf_counts *counts; 54 struct perf_counts *counts;
54 int idx; 55 int idx;
56 int ids;
55 struct hists hists; 57 struct hists hists;
56 char *name; 58 char *name;
57 void *priv; 59 union {
60 void *priv;
61 off_t id_offset;
62 };
58 struct cgroup_sel *cgrp; 63 struct cgroup_sel *cgrp;
59}; 64};
60 65