PageRenderTime 370ms CodeModel.GetById 30ms app.highlight 273ms RepoModel.GetById 12ms app.codeStats 0ms

/arch/um/include/asm/timex.h

https://bitbucket.org/cresqo/cm7-p500-kernel
C Header | 13 lines | 9 code | 4 blank | 0 comment | 0 complexity | 9b5bf64377de763b15736ba0e61a926b MD5 | raw file
Possible License(s): LGPL-2.0, AGPL-1.0, GPL-2.0
 1#ifndef __UM_TIMEX_H
 2#define __UM_TIMEX_H
 3
 4typedef unsigned long cycles_t;
 5
 6static inline cycles_t get_cycles (void)
 7{
 8	return 0;
 9}
10
11#define CLOCK_TICK_RATE (HZ)
12
13#endif