Release 4.11 tools/perf/pmu-events/jevents.h
#ifndef JEVENTS_H
#define JEVENTS_H 1
int json_events(const char *fn,
int (*func)(void *data, char *name, char *event, char *desc,
char *long_desc,
char *pmu,
char *unit, char *perpkg),
void *data);
char *get_cpu_str(void);
#ifndef min
#define min(x, y) ({ \
typeof(x) _min1 = (x); \
typeof(y) _min2 = (y); \
(void) (&_min1 == &_min2); \
_min1 < _min2 ? _min1 : _min2; })
#endif
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Andi Kleen | 78 | 95.12% | 2 | 66.67% |
Sukadev Bhattiprolu | 4 | 4.88% | 1 | 33.33% |
Total | 82 | 100.00% | 3 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.