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

📄 vfs_conf.c

📁 操作系统SunOS 4.1.3版本的源码
💻 C
字号:
/*	@(#)vfs_conf.c 1.1 92/07/30 SMI	*/#include <sys/param.h>#include <sys/vfs.h>#include <sys/bootconf.h>#ifdef UFSextern	struct vfsops ufs_vfsops;	/* XXX Should be ifdefed */#endif#ifdef NFSextern	struct vfsops nfs_vfsops;#endif#ifdef PCFSextern	struct vfsops pcfs_vfsops;#endifstruct vfssw vfssw[] = {#ifdef UFS	"4.2", &ufs_vfsops,	/* 0 = MOUNT_UFS */#else	(char *)0, (struct vfsops *)0,#endif#ifdef NFS	"nfs", &nfs_vfsops,	/* 1 = MOUNT_NFS */#else	(char *)0, (struct vfsops *)0,#endif#ifdef PCFS	"pc", &pcfs_vfsops,	/* 2 = MOUNT_PC */#else	(char *)0, (struct vfsops *)0,#endif};/* * Stolen from ../sun/bootconf.c */struct bootobj rootfs;

⌨️ 快捷键说明

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