cachectl.h
来自「<B>Digital的Unix操作系统VAX 4.2源码</B>」· C头文件 代码 · 共 25 行
H
25 行
/* ------------------------------------------------------------------ *//* | Copyright Unpublished, MIPS Computer Systems, Inc. All Rights | *//* | Reserved. This software contains proprietary and confidential | *//* | information of MIPS and its suppliers. Use, disclosure or | *//* | reproduction is prohibited without the prior express written | *//* | consent of MIPS. | *//* ------------------------------------------------------------------ *//* * cachectl.h -- defines for MIPS cache control system calls *//* * Options for cacheflush system call */#define ICACHE 0x1 /* flush i cache */#define DCACHE 0x2 /* flush d cache */#define BCACHE (ICACHE|DCACHE) /* flush both caches *//* * Options for cachectl system call */#define CACHEABLE 0 /* make page(s) cacheable */#define UNCACHEABLE 1 /* make page(s) uncacheable */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?