Release 4.10 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),
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 | andi kleen | 66 | 94.29% | 1 | 50.00% |
sukadev bhattiprolu | sukadev bhattiprolu | 4 | 5.71% | 1 | 50.00% |
| Total | 70 | 100.00% | 2 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.