This source file includes following definitions.
- ndelay
- ssleep
1
2 #ifndef _LINUX_DELAY_H
3 #define _LINUX_DELAY_H
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 #include <linux/kernel.h>
23
24 extern unsigned long loops_per_jiffy;
25
26 #include <asm/delay.h>
27
28
29
30
31
32
33
34
35
36
37
38 #ifndef MAX_UDELAY_MS
39 #define MAX_UDELAY_MS 5
40 #endif
41
42 #ifndef mdelay
43 #define mdelay(n) (\
44 (__builtin_constant_p(n) && (n)<=MAX_UDELAY_MS) ? udelay((n)*1000) : \
45 ({unsigned long __ms=(n); while (__ms--) udelay(1000);}))
46 #endif
47
48 #ifndef ndelay
49 static inline void ndelay(unsigned long x)
50 {
51 udelay(DIV_ROUND_UP(x, 1000));
52 }
53 #define ndelay(x) ndelay(x)
54 #endif
55
56 extern unsigned long lpj_fine;
57 void calibrate_delay(void);
58 void __attribute__((weak)) calibration_delay_done(void);
59 void msleep(unsigned int msecs);
60 unsigned long msleep_interruptible(unsigned int msecs);
61 void usleep_range(unsigned long min, unsigned long max);
62
63 static inline void ssleep(unsigned int seconds)
64 {
65 msleep(seconds * 1000);
66 }
67
68 #endif