Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.15-rc6 25 lines 433 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* 3 * linux/include/asm-cris/timex.h 4 * 5 * CRIS architecture timex specifications 6 */ 7 8#ifndef _ASM_CRIS_TIMEX_H 9#define _ASM_CRIS_TIMEX_H 10 11#include <arch/timex.h> 12 13/* 14 * We don't have a cycle-counter.. but we do not support SMP anyway where this is 15 * used so it does not matter. 16 */ 17 18typedef unsigned long long cycles_t; 19 20static inline cycles_t get_cycles(void) 21{ 22 return 0; 23} 24 25#endif