cache.c

来自「RTEMS (Real-Time Executive for Multiproc」· C语言 代码 · 共 37 行

C
37
字号
/* *  Cache Management Support Routines for the SPARC * *  $Id: cache.c,v 1.2 2000/11/27 17:02:39 joel Exp $ */#include <rtems.h>#include "cache_.h"#if defined(HAS_INSTRUCTION_CACHE)void _CPU_cache_invalidate_entire_instruction ( void ){  asm volatile ("flush");}/* XXX these need to be addressed */void _CPU_cache_freeze_instruction ( void ){}void _CPU_cache_unfreeze_instruction ( void ){}void _CPU_cache_enable_instruction ( void ){}void _CPU_cache_disable_instruction (   void ){}#endif/* end of file */

⌨️ 快捷键说明

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