cregit-Linux how code gets into the kernel

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

PersonTokensPropCommitsCommitProp
Andi Kleen7895.12%266.67%
Sukadev Bhattiprolu44.88%133.33%
Total82100.00%3100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.