evsel.h (a5a7fd76b55a6e6916ff22e5c8fdb39a8381be2c) | evsel.h (779d0b997e0787fc5f80110159b6c18ae0fae395) |
---|---|
1#ifndef __PERF_EVSEL_H 2#define __PERF_EVSEL_H 1 3 4#include <linux/list.h> 5#include <stdbool.h> 6#include <stddef.h> 7#include <linux/perf_event.h> 8#include <linux/types.h> --- 79 unchanged lines hidden (view full) --- 88 int is_pos; 89 bool supported; 90 bool needs_swap; 91 bool no_aux_samples; 92 bool immediate; 93 bool system_wide; 94 bool tracking; 95 bool per_pkg; | 1#ifndef __PERF_EVSEL_H 2#define __PERF_EVSEL_H 1 3 4#include <linux/list.h> 5#include <stdbool.h> 6#include <stddef.h> 7#include <linux/perf_event.h> 8#include <linux/types.h> --- 79 unchanged lines hidden (view full) --- 88 int is_pos; 89 bool supported; 90 bool needs_swap; 91 bool no_aux_samples; 92 bool immediate; 93 bool system_wide; 94 bool tracking; 95 bool per_pkg; |
96 unsigned long *per_pkg_mask; |
|
96 /* parse modifier helper */ 97 int exclude_GH; 98 int nr_members; 99 int sample_read; 100 struct perf_evsel *leader; 101 char *group_name; 102}; 103 --- 254 unchanged lines hidden --- | 97 /* parse modifier helper */ 98 int exclude_GH; 99 int nr_members; 100 int sample_read; 101 struct perf_evsel *leader; 102 char *group_name; 103}; 104 --- 254 unchanged lines hidden --- |