⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mm.h

📁 一个简单的操作系统minix的核心代码
💻 H
字号:
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
				src/mm/mm.h	 	 
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

15800	/* This is the master header for mm.  It includes some other files
15801	 * and defines the principal constants.
15802	 */
15803	#define _POSIX_SOURCE      1    /* tell headers to include POSIX stuff */
15804	#define _MINIX             1    /* tell headers to include MINIX stuff */
15805	#define _SYSTEM            1    /* tell headers that this is the kernel */
15806	
15807	/* The following are so basic, all the *.c files get them automatically. */
15808	#include <minix/config.h>       /* MUST be first */
15809	#include <ansi.h>               /* MUST be second */
15810	#include <sys/types.h>
15811	#include <minix/const.h>
15812	#include <minix/type.h>
15813	
15814	#include <fcntl.h>
15815	#include <unistd.h>
15816	#include <minix/syslib.h>
15817	
15818	#include <limits.h>
15819	#include <errno.h>
15820	
15821	#include "const.h"
15822	#include "type.h"
15823	#include "proto.h"
15824	#include "glo.h"

⌨️ 快捷键说明

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