cregit-Linux how code gets into the kernel

Release 4.7 include/linux/sched_clock.h

Directory: include/linux
/*
 * 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

PersonTokensPropCommitsCommitProp
stephen boydstephen boyd8100.00%1100.00%
Total8100.00%1100.00%


static inline void sched_clock_register(u64 (*read)(void), int bits, unsigned long rate) { ; }

Contributors

PersonTokensPropCommitsCommitProp
stephen boydstephen boyd1875.00%133.33%
daniel lezcanodaniel lezcano520.83%133.33%
russell kingrussell king14.17%133.33%
Total24100.00%3100.00%

#endif #endif

Overall Contributors

PersonTokensPropCommitsCommitProp
stephen boydstephen boyd3343.42%240.00%
daniel lezcanodaniel lezcano2836.84%120.00%
russell kingrussell king1317.11%120.00%
marc zyngiermarc zyngier22.63%120.00%
Total76100.00%5100.00%
Directory: include/linux
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}