home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / lxapi32.zip / Include / asm / cache.h < prev    next >
C/C++ Source or Header  |  2002-04-26  |  323b  |  16 lines

  1. /* $Id: cache.h,v 1.2 2002/04/26 23:09:18 smilcke Exp $ */
  2.  
  3. /*
  4.  * include/asm-i386/cache.h
  5.  */
  6. #ifndef __ARCH_I386_CACHE_H
  7. #define __ARCH_I386_CACHE_H
  8.  
  9. #include <linux/config.h>
  10.  
  11. /* L1 cache line size */
  12. #define L1_CACHE_SHIFT    (CONFIG_X86_L1_CACHE_SHIFT)
  13. #define L1_CACHE_BYTES    (1 << L1_CACHE_SHIFT)
  14.  
  15. #endif
  16.