资源简介
操作系统课程实验-利用C语言编写的进程管理和进程调度任务。包括源程序和实验报告。
代码片段和文件信息
#include “stdio.h“
#include
#include
#define getpch(type) (type*)malloc(sizeof(type))
#define NULL 0
struct pcb { /* 定义进程控制块PCB */
char name[10];
char state;
int super;
int ntime;
int rtime;
struct pcb* link;
}*ready=NULL*p;
typedef struct pcb PCB;
void sort() /* 建立对进程进行优先级排列函数*/
{
PCB *first *second;
int insert=0;
if((ready==NULL)||((p->super)>(ready->super))) /*优先级最大者插入队首*/
{
p->link=ready;
ready=p;
}
else /* 进程比较优先级插入适当的位置中*/
{
first=ready;
second=first->link;
while(second!=NULL)
{
if((p->super)>(second->super)) /*若插入进程比当前进程优先数大*/
{ /*插入到当前进程前面*/
p->link=second;
first->link=p;
second=NULL;
insert=1;
}
else /* 插入进程优先数最低则插入到队尾*/
{
first=first->link;
second=second->link;
}
}
if(insert==0) first->link=p;
}
}
void input() /* 建立进程控制块函数*/
{
int inum;
printf(“\n input process number?“);
scanf(“%d“&num);
for(i=0;i {
printf(“\n input the process No.%d:\n“i);
p=getpch(PCB);
printf(“\n the name of Process:“);
scanf(“%s“p->name);
printf(“\n the super of Process:“);
scanf(“%d“&p->super);
printf(“\n the time need:“);
scanf(“%d“&p->ntime);
printf(“\n“);
p->rtime=0;p->state=‘w‘;
p->link=NULL;
sort(); /* 调用sort函数*/
}
}
int space()
{
int l=0; PCB* pr=ready;
while(pr!=NULL)
{
l++;
pr=pr->link;
}
return(l);
}
void disp(PCB * pr) /*建立进程显示函数用于显示当前进程*/
{
printf(“\n qname \t state \t super \t ndtime \t runtime \n“);
printf(“|%s\t“pr->name);
printf(“|%c\t“pr->state);
printf(“|%d\t“pr->super);
printf(“|%d\t“pr->ntime);
printf(“|%d\t“pr->rtime);
printf(“\n“);
}
void check() /* 建立进程查看函数 */
{
PCB* pr;
printf(“\n **** now the process runing is:%s“p->name); /*显示当前运行进程*/
disp(p);
pr=ready;
printf(“\n ****now the ready quenue is:\n“); /*显示就绪队列状态*/
while(pr!=NULL)
{
disp(pr);
pr=pr->link;
}
}
void destroy() /*建立进程撤消函数(进程运行结束撤消进程)*/
{
printf(“\n process [%s] has finished.\n“p->name);
free(p);
}
void running() /* 建立进程就绪函数(进程运行时间到置就绪状态*/
{
(p->rtime)++;
if(p->rtime==p->ntime)
destroy(); /* 调用destroy函数*/
else
{
(p->super)--;
p->state=‘w‘;
sort(); /*调用sort函数*/
}
}
void main() /*主函数*/
{
int lenh=0;
char ch;
input();
len=space();
while((len!=0)&&(ready!=NULL))
{
ch=getchar();
h++;
printf(“\n The execute number:%d \n“h);
p=ready;
ready=p->link;
p->link=NULL;
p->state=‘R‘;
check();
running();
printf(“\n press any key to continue.“);
ch=getchar();
}
printf(“\n\n process is over.\n“);
ch=getchar();
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2808 2010-04-29 12:35 操作系统实验\os02.c
文件 653824 2011-12-28 18:05 操作系统实验\操作系统实验报告 梅茏.doc
目录 0 2010-04-29 12:35 操作系统实验
----------- --------- ---------- ----- ----
656632 3
相关资源
- C语言实现最低松弛度优先算法源代码
- 操作系统信号量PV经典问题:沉睡的理
- 基于C++的银行家算法模拟实现
- 生产者消费者问题源码-MFC实现-进程模
- 操作系统实验 进程调度 高响应比优先
- 操作系统文件管理C++代码实现
- 嗜睡的理发师进程同步与实现c++
- 安徽大学操作系统实验八基于扫描的
- 安徽大学操作系统实验四主存空间的
- 操作系统——银行家算法
- 操作系统_生产者消费者c++、mfc实现
- 进程调度模拟算法C++实现
- 磁盘调度c++模拟实现计算机操作系统
- 进程管理模拟 VC++ mfc实现
- 操作系统课设源代码 模拟进程的并
- 64位操作系统下win10、win7,VC6的所有问
- 操作系统课程设计之死锁检测
- 操作系统课程设计 哲学家进餐问题完
- 2010-2011华南理工大学操作系统课程设
- 操作系统进程间通信,用mfc实现
- 2013-2014华南理工大学操作系统课程设
- 操作系统实验 请求分页存储管理(包
- 进程/作业调度:时间片轮转调度算法
- 嵌入式实时操作系统μC/OS-III(英文
- 操作系统课程设计:进程/作业调度
- 操作系统 进程调度 多级队列反馈
- 自己动手写操作系统 于渊 高清带书签
- 操作系统读者写者写优先
- 消费者与生产者
- 操作系统八大调度算法c/c++实现
评论
共有 条评论