cregit-Linux how code gets into the kernel

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

PersonTokensPropCommitsCommitProp
andi kleenandi kleen6694.29%150.00%
sukadev bhattiprolusukadev bhattiprolu45.71%150.00%
Total70100.00%2100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.