收藏 分销(赏)

操作系统优秀课程设计小型的操作系统.doc

上传人:精*** 文档编号:2697601 上传时间:2024-06-04 格式:DOC 页数:35 大小:1.90MB
下载 相关 举报
操作系统优秀课程设计小型的操作系统.doc_第1页
第1页 / 共35页
操作系统优秀课程设计小型的操作系统.doc_第2页
第2页 / 共35页
操作系统优秀课程设计小型的操作系统.doc_第3页
第3页 / 共35页
操作系统优秀课程设计小型的操作系统.doc_第4页
第4页 / 共35页
操作系统优秀课程设计小型的操作系统.doc_第5页
第5页 / 共35页
点击查看更多>>
资源描述

1、操作系统课程设计汇报 题目:一个小型操作系统 班级:计122(杏) 学号: 姓名:贾苏 日期:/06/231. 试验平台(1)软件平台: 开发系统平台:Windows 7 (64) Microsoft visual c+ 6.0 测试系统平台:Windows 7 (64)(2) 硬件平台: cpu:AMD A6-3420 APU 内存:4GB 硬盘:500G2.所需实现功效及对应叙述:(1)进程调度管理 为了贴切现实中os,采取RR(轮转调度算法),且不提供用户显式选择调度算法,即对用户是透明。 现实中处理器主频为1Ghz3Ghz,选择中间点为1.5Ghz,得时间片大小为0.7ns ,为方便计

2、算*10,则时间片大小定为7ns。 假设进程之间调度和切换不花费cpu时间。(2)死锁检测和处理 检测当然采取是 银行家算法 处理:让用户选择kill一个进程,释放她所占有全部资源。(3)虚拟分页调度管理 虚拟分页:给出是逻辑值 访问磁盘 将那个数据块放入到内存中内存中地址采取一定算法相对应于磁盘地址。 特要求 访存采取是 按字节寻址 内存大小 128KB 外存大小 1MB 即整个系统能够提供1MB逻辑地址空间供进程进行访问(在地址总线足够扫描内存情况下)。虚拟地址映射采取:直接映射法要求8kB为一个页面,故内存有16个页面,外存有128个页面。假如产生了内存已满,便会产生缺页中止,淘汰采取F

3、IFO算法,利用一个队列来做。部分内外存对应表00,128,2*128+0.11,129,2*128+1.22,130,2*128+2.16127,128+16,2*128+16.(4)I/O中止处理 设中止来自两个方面: 1.DMA输送开始和结束时中止 设定一个宏 定义为DMA一次传输数据量大小-DmaNum假定为10kb每次 DMA开始:花费1ns cpu时间进行中止处理 DMA结束:花费2ns cpu时间进行中止处理 由操作系统课程知,DMA传输数据时不需要CPU干预。2. 随机中止 发生外部随机中止,cpu无条件立即响应,并实施中止处理程序,一样假设中止处理程序调度和切换不花费cpu时

4、间。(5)内存地址越界或内存不足进程访问内存时超出了进程所要最大值,此时发生中止,已达成内存保护功效。内存不足时即为目前动态地址重定位寄存器中值+进程所需内存大小超出了内存上限,此时进行内存紧凑,同时修改被移动进程中各个相关参数。3.总体设计 开始 内存管理查看运行情况开始运行外存空间查看查看cpu运行内存空间查看死锁检测和解除进程信息查看4.程序所需数据结构及其抽象过程 先定义此次操作系统外设资源,假设有A类资源10个,B类资源5个,C类资源6个-NeedRescourse; 作业中各个进程全部需要一个代号-ProcessName,各个进程到来时间不一样,故需要统计一下-ArriveTime

5、,每个进程所需要cpu时间是不够-NeedCpuTime,每个进程所需内存空间大小是不一样-NeedMem。 各个进程中任务是不一样故需要预先设定本进程中所要实施操作类型-OpKind,假如是计算型直接给出所需要cpu时间即可,假如是I/O型还需要给出所传输数据量大小-NeedTranDataNum,在此能够给OpKind做一个union型结构。 多道程序程序在运行过程中需要对进程所需内存地址进行动态地址重定位,故在系统之中需要设置一个动态地址重定位寄存器,其中内容是下次进程能够使用内存始址-DynReg。抽象结果: struct Processchar ProcessName10;/进程名字

6、 int ArriveTime; / ns等级int NeedCpuTime; /此进程所需要时间int NeedMem; /所需要cpu时间 FlagForOp OpKind; /用于指示是何种操作 int NeedTranDataNum; /给IO用数据块int OpCpus; /计算类型操作所需cpu时间int NeedRescourse3 ;/需要资源数目 NULL代表不需要使用Process *next;5.具体设计1.进程信息查看依次遍历全部链表,并将它们信息依次打印出来。实现函数名:void ShowProcessInfo()2.死锁检测和解除假定本系统中各个所需资源均是独占型资

7、源,在进程运行过程中不再释放,故只需要遍历链表将各个进程中所需资源统计出来,只要小于系统中预设即可,一旦进程所需资源大于系统中最大量,给用户选择kill一进程,已达成释放资源目标。死锁检测函数:void DeedLock() void DeedLock_LookNeedRescourse()死锁解除函数:void DeedLock_KillProcess()3. 内存空间查看查看各个进程所占用内存空间,借助于DynReg这个全局变量实施内存空间动态重定位。实现函数:void LookMem()4. 查看CPU运行以CPU角度,查看作业运行情况,实现函数:void LookCpu() void

8、LookCpu_ShowRunningProcess()5. 外存空间查看外存空间是用户工作区间,故只要遍历整个进程链表,统计出全部进程占有全部空间即可。实现函数:void LookDiskMem()6. 查看运行查看系统运行中各个资源使用情况:实现函数:void ShowRunningProcess() void ShowRunningProcess_CalculateCpuNeed(int*,int)7. 内存管理缺页调度算法:FIFO(借助于循环队列实现)实现函数:void MemToDiskMem()6.程序运行和调试1.打开程序初始界面:按系统提醒输入进程数,及其相关各个参数2.输入

9、完成后主界面:用户能够按下相关选择键实施相关各个操作。3. 按下1 查看各个进程信息能够看到刚刚输入各个进程相关信息4.按下25. 按下3 查看运行时CPU使用情况可见此时系统是安全。系统出差提醒按下1显示目前各个进程所需资源然后kill进程1后在查看一下作业中进程,发觉被kill进程没有,实现了此功效。6. 按下4 查看内存使用情况7. 按下5 查看外存空间8. 按下6 查看运行情况9. 按下7 产看内存使用情况(1) 没有产生缺页 (2) 产生缺页 10.按下9 退出此系统7.碰到问题(1) 自己编写映射表相当困难,一度想改用Java语言,在于对C+语言了解不够。(2) 犯错处理没有完全做

10、完,做不够精细,很多地方直接结束(3) 对用户输入数据做类型检验不够充足(4) delete job时总是出现系统错误,后debug发觉,因为对象之中存在不为空指针,造成犯错,故再释放指针所占空间后系统正常运行。8. 源代码#include#include#include#include#includeCirQueue.h /循环队列头文件using namespace std;#define MAXMEM 128 /定义此次操作系统最大内存容量#define MAXDISKMEM 1024 /定义此次操作系统最大外存容量 #define YE 10 /定义此次操作系统分页大小 并 以此实现

11、虚拟存放int UsedMAXMEM=0;int UsedMAXDISKMEM=0;/定义进程可能用到外部资源 #define A 10#define B 5#define C 6 /cpu #define RR 7 /定义时间片大小为7ns#define BEFOREDMA 1 /DMA之前所需cpu时间 #define AFTERDMA 2 /DMA以后所需cpu时间 #define ONEDMANUM 10/DMA一次最多传送10kb数据 enum FlagForOpIO,Calculate,others; int DynReg=0;/定义用于描述动态地址重定位寄存器全局变量 struc

12、t Processchar ProcessName10;/进程名字 int ArriveTime;/ ns等级int NeedCpuTime;/此进程所需要时间int NeedMem;/所需要cpu时间 FlagForOp OpKind;/用于指示是何种操作 int NeedTranDataNum;/给IO用数据块int OpCpus;/计算类型操作所需cpu时间/假设others不需要其它各个操作。 int NeedRescourse3;/需要资源数目 NULL代表不需要使用 0a. Process *next;class JOBProcess *p;Process *head;Proces

13、s *head1;/建立一个备用链表/Process *wait,*runing; /wait 为等候链表 running是正在运行进程 public:JOB()head1=p=head=NULL;/初始化为空 coutPlease waiting .The System is initial.endl;Sleep();/暂停一秒 maybe Sleep() coutSystem is already. Now you should enter information of you job.endl;int n;coutenter your jobs process num.n;while(n

14、)p=new Process();coutplease enter the name of process.p-ProcessName;coutplease enter the arrivetime of process.p-ArriveTime;coutplease enter the NeedCpuTime of process.p-NeedCpuTime;coutplease enter the NeedMem of process.p-NeedMem;while(p-NeedMem128)coutThis System cant not accept your job! Maybe y

15、our job is too large! Please enter a num 128p-NeedMem;coutplease enter the operation of process.0 to TranDiskNum ,1 to cpunn;if(nn=0)coutplease enter the NeedTranDataNum.p-NeedTranDataNum;p-OpKind=IO;elsecoutplease enter the OpCpus.p-OpCpus;p-OpKind=Calculate;coutPLease enter the A,B or C you needen

16、dl;for(int i=0;ip-NeedRescoursei;p-next=NULL;/尾结点为空 表示 一个节点完成 下面进行插入链表工作 head=SortLinkTable(head,p);n-; /whileLinkCopy();/将此次整理好链表依次赋值赋给备用链表Provide_Same_Process_Name();/检验重名现象void Provide_Same_Process_Name();void VisitLinkTable();Process* SortLinkTable(Process*,Process*);void BeginRunning();void Sho

17、wProcessInfo();void DeedLock();void DeedLock_KillProcess();void DeedLock_LookNeedRescourse();void LookCpu();void LookCpu_ShowRunningProcess();void LookMem();void ShowRunningProcess();void ShowRunningProcess_CalculateCpuNeed(int*,int);void LookDiskMem();void LookMem_ChangeMem();bool CheckMem();void L

18、ookDiskMem_Change();void LinkCopy(); void MemToDiskMem(); JOB() delete head; delete head1; delete p; ;JOB *job;/设置全局变量 void JOB:Provide_Same_Process_Name() system(cls); char buffer10; Process *temp=head1; Process *temp1=head1; while(temp) temp1=temp-next; while(temp1) if(strcmp(temp-ProcessName,temp

19、1-ProcessName)=0) coutMini_OperationSystem had detect the same name process in your job!endl; coutThis System cant accept this sitution.Please Rename your Process! nThanks for your corporation!endl; coutThis is ALL your process name:endl; VisitLinkTable(); coutEnter 1 to rename the former,0 to renam

20、e the later!n; coutNow Enter new Name:buffer; strcpy(temp1-ProcessName,buffer); else cinbuffer; strcpy(temp-ProcessName,buffer); /end if temp1=temp1-next; /end while temp1 temp=temp-next; /whilevoid AgainEnterJOB()system(cls);delete job;job=new JOB(); void JOB:VisitLinkTable()/不加JOB前缀时候编译不过 加上代表此函数是

21、JOBclass之中 while(head1)coutProcessNamenext; coutnNow , You can see The List to checkout.endl;void JOB:LinkCopy() Process *temp=NULL,*temp2=head; if(head1=NULL) coutLinkCopy() is Here!next=NULL; head1=NULL; while(temp2) /apply a new node temp=new Process(); strcpy(temp-ProcessName,temp2-ProcessName);

22、 temp-ArriveTime=temp2-ArriveTime; temp-NeedCpuTime=temp2-NeedCpuTime; temp-NeedMem=temp2-NeedMem; if(temp2-OpKind=IO) temp-OpKind=IO; temp-NeedTranDataNum=temp2-NeedTranDataNum; else temp-OpKind=Calculate; temp-OpCpus=temp2-OpCpus; for(int i=0;iNeedRescoursei=temp2-NeedRescoursei; /apply end temp-n

23、ext=NULL; /coutcopy is right!next)/寻求到最终一个节点 不停循环退不出去k=k-next;k-next=temp; / coutcopy is right!next; /while if(head1=NULL) coutLinkCopy() is out!endl; system(pause);void JOB:MemToDiskMem()system(cls); CirQueue q(16); /一共定义16个页面 q.EnQueue(e); int *Mem;int count=0; /统计下进程数目Process *temp_head1=head1;wh

24、ile(temp_head1) count+; temp_head1=temp_head1-next; temp_head1=head1; Mem=new intcount; int temp_count=0;while(temp_head1) int Begin=0; coutProcess: ProcessName memery use situation:NeedMem; int k=0; /所需页面数目 if(Begin%YE=0) k=Begin/YE; else k=Begin/YE+1; Memtemp_count+=k; coutk页被占用!next;/end while co

25、utendl;temp_head1=head1;coutWant to see 缺页调度过程 Y/N. option;if(option=y|option=Y)for(int i=0;icount;i+)AllTotal+=Memi;for(int j=0;jMemi;j+) if(q.EnQueue(true) temp_count=0; while(temp_countnext; temp_count+; coutProcess :ProcessName need mem is loading.okendl; temp_head1=head1;else temp_count=0; whil

26、e(temp_countnext; temp_count+; coutProcess :ProcessName need mem is loading error 缺页调度endl; temp_head1=head1;total+; bool flag=q.DeQueue();if(q.EnQueue(true) coutProcess :ProcessName need mem is loading ok 缺页调度endl; /for2coutendl; /for1 cout一共产生了:total 次缺页中止. n缺页中止率为:(float)total/AllTotal%next;run=h

27、ead1;/还原运行链表/建立一个映射表char *Run_Process_Name=new char*count;/申请一个动态二维表for(int i=0;iProcessName); run=run-next;run=NULL; int *Run_Process_CpuNeed=new intcount;/映射表建立完成 /计算各个进程中所需cpu时间ShowRunningProcess_CalculateCpuNeed(Run_Process_CpuNeed,count);Process *priorNode=NULL;/Process *tail=head;while(true)/i

28、nt time11=wait-ArriveTime;if(wait&NowTime=wait-ArriveTime)if(run=NULL)run=wait;priorNode=run;else/连接到尾部 Process *temp=run;while(temp-next!=priorNode)/寻求到前驱节点temp=temp-next;temp-next=wait;/将结点连接上链表priorNode=wait;/wait-next=run;wait=wait-next;/释放一个结点priorNode-next=run;/连接上头部形成 循环链表 if(run)run=run-next

29、; /重新调度coutNowTimeNowTime+RR Process :ProcessName is Runningendl;coutcpu 调度下一个运行进程。endl;NowTime+=RR;/依据上面建设映射 按名取出所需运行时间 int ALLNeedCpu;for(int i=0;iProcessName)=0)break;ALLNeedCpu=Run_Process_CpuNeedi; ALLNeedCpu-=RR;/减去此次运行时间if(ALLNeedCpu0)Run_Process_CpuNeedi=ALLNeedCpu;/重新写回到数组中 保持一致性else /此节点已经

30、做完了 请直接释放 if(run-next=run)run=NULL;elseProcess *k=run;while(k-next!=run)/寻求目前运行节点前一个结点 k=k-next;k-next=k-next-next; run=k;/ end if(run)if(wait=NULL&run=NULL)/没有等候CPU进程了 和 没有正在运行进程 满足退出要求 -退出break;NowTime+;/whilesystem(pause);LinkCopy();/ /将受损链表修复 void JOB:ShowRunningProcess()system(cls);int NowTime=

31、0;Process *run=head1;/临时试用一下 最终需要归还为NULLProcess *wait=head1;/ dsvrfgvregrefswgvregegsdgreint count=0;while(run)/计算等候运行进程个数 count+; run=run-next;run=head1;/还原运行链表/建立一个映射表char *Run_Process_Name=new char*count;/申请一个动态二维表for(int i=0;iProcessName); run=run-next;run=NULL; int *Run_Process_CpuNeed=new intc

32、ount;/映射表建立完成ShowRunningProcess_CalculateCpuNeed(Run_Process_CpuNeed,count);Process *priorNode=NULL;while(true)/int time11=wait-ArriveTime;if(wait&NowTime=wait-ArriveTime)if(run=NULL)run=wait;priorNode=run;else/连接到尾部 Process *temp=run;while(temp-next!=priorNode)/寻求到前驱节点temp=temp-next;temp-next=wait;

33、/将结点连接上链表priorNode=wait;/wait-next=run;wait=wait-next;/释放一个结点priorNode-next=run;/连接上头部形成 循环链表 if(run)run=run-next; /重新调度coutNowTimeNowTime+RR Process :ProcessName is Runningendl;coutNeedRescourse: ANeedRescourse0 BNeedRescourse1 cNeedRescourse2 is using.endl;coutcpu 调度下一个运行进程。endl;NowTime+=RR;/依据上面建

34、设映射 按名取出所需运行时间 int ALLNeedCpu;for(int i=0;iProcessName)=0)break;ALLNeedCpu=Run_Process_CpuNeedi; ALLNeedCpu-=RR;/减去此次运行时间if(ALLNeedCpu0)Run_Process_CpuNeedi=ALLNeedCpu;/重新写回到数组中 保持一致性else /此节点已经做完了 请直接释放 if(run-next=run)run=NULL;elseProcess *k=run;while(k-next!=run)/寻求目前运行节点前一个结点 k=k-next;k-next=k-next-next; run=k;/ end if(run)if(wait=NULL&run=NULL)/没有等候CPU进程了 和 没有正在运行进程 满足退出要求 -退出break;NowTim

展开阅读全文
部分上传会员的收益排行 01、路***(¥15400+),02、曲****(¥15300+),
03、wei****016(¥13200+),04、大***流(¥12600+),
05、Fis****915(¥4200+),06、h****i(¥4100+),
07、Q**(¥3400+),08、自******点(¥2400+),
09、h*****x(¥1400+),10、c****e(¥1100+),
11、be*****ha(¥800+),12、13********8(¥800+)。
相似文档                                   自信AI助手自信AI助手
搜索标签

当前位置:首页 > 学术论文 > 其他

移动网页_全站_页脚广告1

关于我们      便捷服务       自信AI       AI导航        获赠5币

©2010-2024 宁波自信网络信息技术有限公司  版权所有

客服电话:4008-655-100  投诉/维权电话:4009-655-100

gongan.png浙公网安备33021202000488号   

icp.png浙ICP备2021020529号-1  |  浙B2-20240490  

关注我们 :gzh.png    weibo.png    LOFTER.png 

客服