#ifndef _PERF_PERF_H #define _PERF_PERF_H #include <time.h> #include <stdbool.h> #include <linux/types.h> #include <linux/perf_event.h> extern bool test_attr__enabled; void test_attr__init(void); void test_attr__open(struct perf_event_attr *attr, pid_t pid, int cpu, int fd, int group_fd, unsigned long flags); #define HAVE_ATTR_TEST #include "perf-sys.h"
static inline unsigned long long rdclock(void) { struct timespec ts; clock_gettime(CLOCK_MONOTONIC, &ts); return ts.tv_sec * 1000000000ULL + ts.tv_nsec; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Thomas Gleixner | 34 | 100.00% | 1 | 100.00% |
Total | 34 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Arnaldo Carvalho de Melo | 55 | 20.37% | 8 | 20.00% |
Jiri Olsa | 54 | 20.00% | 4 | 10.00% |
Thomas Gleixner | 45 | 16.67% | 2 | 5.00% |
Adrian Hunter | 27 | 10.00% | 5 | 12.50% |
Namhyung Kim | 25 | 9.26% | 3 | 7.50% |
Peter Zijlstra | 13 | 4.81% | 2 | 5.00% |
Andi Kleen | 12 | 4.44% | 4 | 10.00% |
Stéphane Eranian | 10 | 3.70% | 3 | 7.50% |
Wang Nan | 6 | 2.22% | 2 | 5.00% |
Feng Tang | 6 | 2.22% | 1 | 2.50% |
Yanmin Zhang | 5 | 1.85% | 1 | 2.50% |
Kan Liang | 4 | 1.48% | 1 | 2.50% |
Andrey Vagin | 3 | 1.11% | 1 | 2.50% |
Roberto Agostino Vitillo | 2 | 0.74% | 1 | 2.50% |
David Howells | 2 | 0.74% | 1 | 2.50% |
David Ahern | 1 | 0.37% | 1 | 2.50% |
Total | 270 | 100.00% | 40 | 100.00% |