https://github.com/torvalds/linux
Raw File
Tip revision: 9fa7eb283c5cdc2b0f4a8cfe6387ed82e5e9a3d3 authored by Linus Torvalds on 03 June 2009, 03:07:25 UTC
Linux 2.6.30-rc8
Tip revision: 9fa7eb2
timex.h
/*
 * linux/include/asm-m68k/timex.h
 *
 * m68k architecture timex specifications
 */
#ifndef _ASMm68k_TIMEX_H
#define _ASMm68k_TIMEX_H

#define CLOCK_TICK_RATE	1193180 /* Underlying HZ */

typedef unsigned long cycles_t;

static inline cycles_t get_cycles(void)
{
	return 0;
}

#endif
back to top