Linux操作系统实验报告 存储管理试验.docx
《Linux操作系统实验报告 存储管理试验.docx》由会员分享,可在线阅读,更多相关《Linux操作系统实验报告 存储管理试验.docx(15页珍藏版)》请在三一办公上搜索。
1、Linux操作系统实验报告 存储管理试验电子信息学院 实验报告书 课程名:Linux操作系统实验 题 目: 实验三 存储管理试验 实验类别 班 级: BX0907 学 号: 09 姓 名: 吴沛儒 评语: 实验态度:认真 一般 差 实验结果:正确 部分正确错 实验理论:掌握 熟悉 了解 不懂 操作技能:强 一般 差 实验报告:好 一般 差 成绩: 指导教师: 胡静 批阅时间: 年 月 日 Linux操作系统实验报告 - 1 - 1、 实验内容或题目 (1)模拟初始内存页面分配 (2)实现Buddy heap算法 (3)通过键盘输入随机产生申请和释放操作 请求:r8代表申请8个页面。 释放:f4
2、代表释放4个页面。 (4)每个申请或释放操作,都在屏幕上显示操作前与操作后的内存分配的对比图。 (5)实验假设申请和释放的页数都是2的整次幂。 (1)建立工作集页面模型。 (2)利用随机函数动态生成进程访问页面的序列号。 (3)实现FIFO页面淘汰算法。 (4)实现页故障率反馈模型。 2、 实验目的与要求 (1) 用C语言是实现模拟Linux系统中连续内存分配用到的伙伴对算法。 (2) 通过链表的形式输出在内存申请和释放过程中内存状态的对比图。 (1)了解工作集模型的原理及其特点。 (2)实现页故障率反馈模型。 3、 实验步骤与源程序 1. Buddy heap算法模拟 源程序; #inclu
3、de #include typedef struct block int start; int loc; struct block *next; struct block *prior; int size; block; Linux操作系统实验报告 - 2 - int maxsize=512; block *note; block *id10; void printmem int i; for(i=9; i=0;i-) printf(%d -,i); block); int power(int x,int y) int root(int x,int y) int result=y,count=
4、0; while(result!=1) return count; result=result/x; count+; int k=0,tmp=1; for(;knext=note; id9-prior=id9; note-prior=id9; printmem; block * temp = (struct block *)malloc(sizeof(struct block); temp = idi-next; while(temp!=NULL) printf(%d(%s)(%d)-,temp-size,temp-loc=1?占用:空闲,temp-start); temp=temp-next
5、; void init int i; for(i=0;inext; int flag=0,isFirst=0; idi-prior=idi;idi-next=NULL; note=(struct block *)malloc(sizeof(struct block); note-size=maxsize; note-start=0; note-loc=0; note-next=NULL; id9=(struct block *)malloc(sizeof(struct Linux操作系统实验报告 - 3 - while(pend!=NULL) if(pend-loc=0) if(isFirst
6、=0) isFirst+; idtempId-next=pend-next; else if(flag=0) tempId=tempId+1; if(tempIdprior-next=pend-next; int size=(pend-size)/2; int start=pend-start; newu-size=size; newu-start=start; newf-start=start+size; newu-loc=0; newf-size=size; newf-loc=0; newf-prior=newu; newu-next=newf; newf-next=NULL; tempI
7、d-; cend=idtempId; free(pend);free(cend);free(newu);free(newf); split(tempId); else return -1; int merge(int tempId,block *first) block * merger=(struct block *)malloc(sizeof(struct block); block * second=NULL; second=idtempId-next; int nextStart=first-start+first-size; int preStart=first-start-firs
8、t-size; int flag=0,isFirst=0; while(second!=NULL) while(cend-next!=NULL) cend-next=newu; newu-prior=cend; flag=1; return 1; cend=cend-next; if(second-start=nextStart | second-start=preStart) & second-loc=0) ; merger-size=(first-size)+(second-size) merger-loc=0; else pend=pend-next; merger-start=(fir
9、st-start)start)?(first-start):(second-start); Linux操作系统实验报告 - 4 - if(first-next!=NULL) return 1; first-next-prior=first-prior; int freeb(int size) block * first=(struct block *)malloc(sizeof(struct block); int tempId=root(2,size); first=idtempId-next; int flag=0; while(first!=NULL) if(flag=1) merge(
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- Linux操作系统实验报告 存储管理试验 Linux 操作系统 实验 报告 存储 管理 试验
链接地址:https://www.31ppt.com/p-3160653.html