~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/linux/delay.h

Version: ~ [ linux-6.3-rc3 ] ~ [ linux-6.2.7 ] ~ [ linux-6.1.20 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.103 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.175 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.237 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.278 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.310 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.8.17 ] ~ [ linux-4.7.10 ] ~ [ linux-4.6.7 ] ~ [ linux-4.5.7 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 #ifndef _LINUX_DELAY_H
  2 #define _LINUX_DELAY_H
  3 
  4 /*
  5  * Copyright (C) 1993 Linus Torvalds
  6  *
  7  * Delay routines, using a pre-computed "loops_per_jiffy" value.
  8  */
  9 
 10 #include <linux/kernel.h>
 11 
 12 extern unsigned long loops_per_jiffy;
 13 
 14 #include <asm/delay.h>
 15 
 16 /*
 17  * Using udelay() for intervals greater than a few milliseconds can
 18  * risk overflow for high loops_per_jiffy (high bogomips) machines. The
 19  * mdelay() provides a wrapper to prevent this.  For delays greater
 20  * than MAX_UDELAY_MS milliseconds, the wrapper is used.  Architecture
 21  * specific values can be defined in asm-???/delay.h as an override.
 22  * The 2nd mdelay() definition ensures GCC will optimize away the 
 23  * while loop for the common cases where n <= MAX_UDELAY_MS  --  Paul G.
 24  */
 25 
 26 #ifndef MAX_UDELAY_MS
 27 #define MAX_UDELAY_MS   5
 28 #endif
 29 
 30 #ifndef mdelay
 31 #define mdelay(n) (\
 32         (__builtin_constant_p(n) && (n)<=MAX_UDELAY_MS) ? udelay((n)*1000) : \
 33         ({unsigned long __ms=(n); while (__ms--) udelay(1000);}))
 34 #endif
 35 
 36 #ifndef ndelay
 37 static inline void ndelay(unsigned long x)
 38 {
 39         udelay(DIV_ROUND_UP(x, 1000));
 40 }
 41 #define ndelay(x) ndelay(x)
 42 #endif
 43 
 44 extern unsigned long lpj_fine;
 45 void calibrate_delay(void);
 46 void msleep(unsigned int msecs);
 47 unsigned long msleep_interruptible(unsigned int msecs);
 48 void usleep_range(unsigned long min, unsigned long max);
 49 
 50 static inline void ssleep(unsigned int seconds)
 51 {
 52         msleep(seconds * 1000);
 53 }
 54 
 55 #endif /* defined(_LINUX_DELAY_H) */
 56 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | Wiki (Japanese) | Wiki (English) | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

osdn.jp