wbflush.h

来自「this SRC packet is the headfiles that MI」· C头文件 代码 · 共 37 行

H
37
字号
/* * Header file for using the wbflush routine * * This file is subject to the terms and conditions of the GNU General Public * License.  See the file "COPYING" in the main directory of this archive * for more details. * * Copyright (c) 1998 Harald Koerfgen * * $Id: wbflush.h,v 1.2 1999/08/13 17:07:28 harald Exp $ */#ifndef __ASM_MIPS_WBFLUSH_H#define __ASM_MIPS_WBFLUSH_H#include <linux/config.h>#if defined(CONFIG_CPU_HAS_WB)/* * R2000 or R3000 */extern void (*__wbflush) (void);#define wbflush() __wbflush()#else/* * we don't need no stinkin' wbflush */#define wbflush()  do { } while(0)#endifextern void wbflush_setup(void);#endif /* __ASM_MIPS_WBFLUSH_H */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?