aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/perf_counter.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/perf_counter.h')
-rw-r--r--include/linux/perf_counter.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/linux/perf_counter.h b/include/linux/perf_counter.h
index bcbf1c43ed42..6a384f04755a 100644
--- a/include/linux/perf_counter.h
+++ b/include/linux/perf_counter.h
@@ -335,6 +335,18 @@ enum perf_event_type {
335 PERF_EVENT_FORK = 7, 335 PERF_EVENT_FORK = 7,
336 336
337 /* 337 /*
338 * struct {
339 * struct perf_event_header header;
340 * u32 pid, tid;
341 * u64 value;
342 * { u64 time_enabled; } && PERF_FORMAT_ENABLED
343 * { u64 time_running; } && PERF_FORMAT_RUNNING
344 * { u64 parent_id; } && PERF_FORMAT_ID
345 * };
346 */
347 PERF_EVENT_READ = 8,
348
349 /*
338 * When header.misc & PERF_EVENT_MISC_OVERFLOW the event_type field 350 * When header.misc & PERF_EVENT_MISC_OVERFLOW the event_type field
339 * will be PERF_SAMPLE_* 351 * will be PERF_SAMPLE_*
340 * 352 *