delay.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __ASM_ARM_DELAY_H
  2. #define __ASM_ARM_DELAY_H
  3. /*
  4.  * Copyright (C) 1995 Russell King
  5.  *
  6.  * Delay routines, using a pre-computed "loops_per_second" value.
  7.  */
  8. extern void __delay(int loops);
  9. /*
  10.  * division by multiplication: you don't have to worry about
  11.  * loss of precision.
  12.  *
  13.  * Use only for very small delays ( < 1 msec).  Should probably use a
  14.  * lookup table, really, as the multiplications take much too long with
  15.  * short delays.  This is a "reasonable" implementation, though (and the
  16.  * first constant multiplications gets optimized away if the delay is
  17.  * a constant)
  18.  */
  19. extern void udelay(unsigned long usecs);
  20. static inline unsigned long muldiv(unsigned long a, unsigned long b, unsigned long c)
  21. {
  22. return a * b / c;
  23. }
  24. #endif /* defined(_ARM_DELAY_H) */