操作系统实验报告模板(7)

发布时间:2021-06-05

这是操作系统课程中的四次实验最终报告,内包括进程通信实验,进程同步互斥实验,文件系统模拟实验和Linux shell操作。里面的程序都是我运行过的。

int files; //当前打开文件数 FCB f[OPEN_MAX]; //FCB拷贝 OPENLIST() {

files=0;

for(int i=0;i<OPEN_MAX;i++){ f[i].fatherBlockNum=-1;//为分配打开

f[i].type=GENERAL; } } };

/*-------------目录文件结构---------------*/ struct dirFile {

struct FCB fcb[BlockFcbCount]; void init(int _FatherBlockNum,int _CurrentBlockNum,char *name)//父块号,当前块号,目录名 {

strcpy(fcb[0].fname,name); //本身的FCB

fcb[0].fatherBlockNum=_FatherBlockNum;

fcb[0].currentBlockNum=_CurrentBlockNum;

fcb[0].type=DIRECTORY; //标记目录文件

for(int i=1;i<BlockFcbCount;i++){

fcb[i].fatherBlockNum=_CurrentBlockNum; //标记为子项

fcb[i].type=NULL; // 标记为空白项 } } };

/**********************************************************************/ struct DISK {

int FAT1[BlockCount]; //FAT1 int FAT2[BlockCount]; //FAT2 struct dirFile root; //根目录 char data[BlockCount-3][BlockSize]; void format() {

memset(FAT1,0,BlockCount); //FAT1

memset(FAT2,0,BlockCount); //FAT2

FAT1[0]=FAT1[1]=FAT1[2]=-2; //0,1,2盘块号依次代表FAT1,FAT2,根目录区

FAT2[0]=FAT2[1]=FAT2[2]=-2; //FAT作备份

root.init(2,2,"C://");//根目录区

操作系统实验报告模板(7).doc 将本文的Word文档下载到电脑

精彩图片

热门精选

大家正在看

× 游客快捷下载通道(下载后可以自由复制和排版)

限时特价:7 元/份 原价:20元

支付方式:

开通VIP包月会员 特价:29元/月

注:下载文档有可能“只有目录或者内容不全”等情况,请下载之前注意辨别,如果您已付费且无法下载或内容有问题,请联系我们协助你处理。
微信:fanwen365 QQ:370150219