VSF Documented
jiffies.h
Go to the documentation of this file.
1#ifndef __VSF_LINUX_JIFFIES_H__
2#define __VSF_LINUX_JIFFIES_H__
3
4#include "hal/arch/vsf_arch.h"
5
6#ifdef __cplusplus
7extern "C" {
8#endif
9
10#define jiffies vsf_systimer_get_tick()
11#define msecs_to_jiffies(__msec) vsf_systimer_ms_to_tick(__msec)
12#define usecs_to_jiffies(__msec) vsf_systimer_us_to_tick(__msec)
13
14#ifdef __cplusplus
15}
16#endif
17
18#endif