Release 4.12 include/linux/sched_clock.h
/*
* sched_clock.h: support for extending counters to full 64-bit ns counter
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#ifndef LINUX_SCHED_CLOCK
#define LINUX_SCHED_CLOCK
#ifdef CONFIG_GENERIC_SCHED_CLOCK
extern void sched_clock_postinit(void);
extern void sched_clock_register(u64 (*read)(void), int bits,
unsigned long rate);
#else
static inline void sched_clock_postinit(void) { }
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Stephen Boyd | 8 | 100.00% | 1 | 100.00% |
Total | 8 | 100.00% | 1 | 100.00% |
static inline void sched_clock_register(u64 (*read)(void), int bits,
unsigned long rate)
{
;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Stephen Boyd | 18 | 75.00% | 1 | 33.33% |
Daniel Lezcano | 5 | 20.83% | 1 | 33.33% |
Russell King | 1 | 4.17% | 1 | 33.33% |
Total | 24 | 100.00% | 3 | 100.00% |
#endif
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Stephen Boyd | 33 | 43.42% | 2 | 40.00% |
Daniel Lezcano | 28 | 36.84% | 1 | 20.00% |
Russell King | 13 | 17.11% | 1 | 20.00% |
Marc Zyngier | 2 | 2.63% | 1 | 20.00% |
Total | 76 | 100.00% | 5 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.