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

📄 file.h

📁 用于motorala 68K系列处理器的小实时多任务操作系统 The OMU Kernel was written to provide a cut-down Unix-like O/S for a
💻 H
字号:
/* * Structure of an element of the file table. */struct file {	short		f_mode;	short		f_ndup;        /* no. fd's pointing here */	short		f_type;	short		f_dev;	struct inode	*f_inode;	long		f_curblk;	/* Current block number */	short		f_curchar;	struct dev	*f_handler;	struct file	*f_pipelink;	/* Other end of pipe file entry */};/* * Values of 'f_mode'. */# define        READABLE        1# define        WRITEABLE       2# define	PIPE		4/* * Values of 'f_type' field. */# define        STD     0# define        B_SPECL 1# define        C_SPECL 2

⌨️ 快捷键说明

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