swh:1:snp:173f8deb0c56c557784b4fd217e7608ac6197844
Raw File
Tip revision: 0adb32858b0bddf4ada5f364a84ed60b196dbcda authored by Linus Torvalds on 01 April 2018, 21:20:27 UTC
Linux 4.16
Tip revision: 0adb328
timex.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __UM_TIMEX_H
#define __UM_TIMEX_H

typedef unsigned long cycles_t;

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

#define CLOCK_TICK_RATE (HZ)

#endif
back to top