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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Header file for using the wbflush routine
  3.  *
  4.  * This file is subject to the terms and conditions of the GNU General Public
  5.  * License.  See the file "COPYING" in the main directory of this archive
  6.  * for more details.
  7.  *
  8.  * Copyright (c) 1998 Harald Koerfgen
  9.  * Copyright (C) 2002 Maciej W. Rozycki
  10.  */
  11. #ifndef __ASM_MIPS_WBFLUSH_H
  12. #define __ASM_MIPS_WBFLUSH_H
  13. #include <linux/config.h>
  14. #ifdef CONFIG_CPU_HAS_WB
  15. extern void (*__wbflush)(void);
  16. extern void wbflush_setup(void);
  17. #define wbflush()
  18. do {
  19. __sync();
  20. __wbflush();
  21. } while (0)
  22. #else /* !CONFIG_CPU_HAS_WB */
  23. #define wbflush_setup() do { } while (0)
  24. #define wbflush() fast_iob()
  25. #endif /* !CONFIG_CPU_HAS_WB */
  26. #endif /* __ASM_MIPS_WBFLUSH_H */