parse-events.h (0c49cd295d42d0032af11d55e2140dbec11dc8d0) | parse-events.h (688d4dfcdd624192cbf03c08402e444d1d11f294) |
---|---|
1#ifndef __PERF_PARSE_EVENTS_H 2#define __PERF_PARSE_EVENTS_H 3/* 4 * Parse symbolic events/counts passed in as options: 5 */ 6 7#include <linux/list.h> 8#include <stdbool.h> --- 57 unchanged lines hidden (view full) --- 66 char *config; 67 union { 68 char *str; 69 u64 num; 70 } val; 71 int type_val; 72 int type_term; 73 struct list_head list; | 1#ifndef __PERF_PARSE_EVENTS_H 2#define __PERF_PARSE_EVENTS_H 3/* 4 * Parse symbolic events/counts passed in as options: 5 */ 6 7#include <linux/list.h> 8#include <stdbool.h> --- 57 unchanged lines hidden (view full) --- 66 char *config; 67 union { 68 char *str; 69 u64 num; 70 } val; 71 int type_val; 72 int type_term; 73 struct list_head list; |
74 bool used; |
|
74}; 75 76struct parse_events_evlist { 77 struct list_head list; 78 int idx; 79 int nr_groups; 80}; 81 --- 45 unchanged lines hidden --- | 75}; 76 77struct parse_events_evlist { 78 struct list_head list; 79 int idx; 80 int nr_groups; 81}; 82 --- 45 unchanged lines hidden --- |