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

📄 fs.h

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

19400	/* This is the master header for fs.  It includes some other files
19401	 * and defines the principal constants.
19402	 */
19403	#define _POSIX_SOURCE      1    /* tell headers to include POSIX stuff */
19404	#define _MINIX             1    /* tell headers to include MINIX stuff */
19405	#define _SYSTEM            1    /* tell headers that this is the kernel */
19406	
19407	/* The following are so basic, all the *.c files get them automatically. */
19408	#include <minix/config.h>       /* MUST be first */
19409	#include <ansi.h>               /* MUST be second */
19410	#include <sys/types.h>
19411	#include <minix/const.h>
19412	#include <minix/type.h>
19413	
19414	#include <limits.h>
19415	#include <errno.h>
19416	
19417	#include <minix/syslib.h>
19418	
19419	#include "const.h"
19420	#include "type.h"
19421	#include "proto.h"
19422	#include "glo.h"

⌨️ 快捷键说明

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