]> git.proxmox.com Git - mirror_spl-debian.git/blob - include/sys/timer.h
Go through and add a header with the proper UCRL number.
[mirror_spl-debian.git] / include / sys / timer.h
1 /*
2 * This file is part of the SPL: Solaris Porting Layer.
3 *
4 * Copyright (c) 2008 Lawrence Livermore National Security, LLC.
5 * Produced at Lawrence Livermore National Laboratory
6 * Written by:
7 * Brian Behlendorf <behlendorf1@llnl.gov>,
8 * Herb Wartens <wartens2@llnl.gov>,
9 * Jim Garlick <garlick@llnl.gov>
10 * UCRL-CODE-235197
11 *
12 * This is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This is distributed in the hope that it will be useful, but WITHOUT
18 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 * for more details.
21 *
22 * You should have received a copy of the GNU General Public License along
23 * with this program; if not, write to the Free Software Foundation, Inc.,
24 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 */
26
27 #ifndef _SPL_TIMER_H
28 #define _SPL_TIMER_H
29
30 #ifdef __cplusplus
31 extern "C" {
32 #endif
33
34 #include <linux/module.h>
35 #include <linux/sched.h>
36 #include <linux/timer.h>
37
38 #define lbolt ((clock_t)jiffies)
39 #define lbolt64 ((int64_t)get_jiffies_64())
40
41 #define delay(ticks) schedule_timeout((long)(ticks))
42
43 #ifdef __cplusplus
44 }
45 #endif
46
47 #endif /* _SPL_TIMER_H */
48