mm.h

来自「一个简单的操作系统minix的核心代码」· C头文件 代码 · 共 30 行

H
30
字号
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
				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 + =
减小字号Ctrl + -
显示快捷键?