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

📄 minix_op.c

📁 早期linux0.95内核的源代码
💻 C
字号:
/* * linux/fs/minix/minix_op.c * * structures for the minix super_block/inode/file-operations */#include <linux/fs.h>#include <linux/minix_fs.h>/* * These are the low-level inode operations for minix filesystem inodes. */struct inode_operations minix_inode_operations = {	minix_create,	minix_lookup,	minix_link,	minix_unlink,	minix_symlink,	minix_mkdir,	minix_rmdir,	minix_mknod,	minix_rename,	minix_readlink,	minix_open,	minix_release,	minix_follow_link};/* * We have just NULL's here: the current defaults are ok for * the minix filesystem. */struct file_operations minix_file_operations = {	NULL,	/* lseek */	NULL,	/* read */	NULL	/* write */};	

⌨️ 快捷键说明

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