mirror of
https://git.proxmox.com/git/mirror_zfs
synced 2025-04-28 11:40:17 +00:00

feeling a lot more sane, cleaner, and linuxy. I may finish this tonight. git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@4 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c
22 lines
347 B
C
22 lines
347 B
C
#ifndef _LINUX_TIMER_H
|
|
#define _LINUX_TIMER_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <linux/sched.h>
|
|
#include <linux/timer.h>
|
|
|
|
#define lbolt ((clock_t)jiffies)
|
|
#define lbolt64 ((int64_t)get_jiffies_64())
|
|
|
|
#define delay(ticks) schedule_timeout((long timeout)(ticks))
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _LINUX_TIMER_H */
|
|
|