资源简介
电子科技大学操作系统进程管理过程模拟
基于python编写,有问题csdn交流。

代码片段和文件信息
#coding=utf-8
#以下是进程类
########################################################################################################################
#进程类的定义
class process():
def __init__(selfpidpriority):
self.pid = pid
self.cpu_state = None
self.memory = None
self.open_file = None
self.status = ‘ready‘
self.childs = []
self.priority = priority
self.father = None
self.reqRes = {}
#进程创建进程,参数1为子进程id参数2位子进程优先级
def create_process(selfchild_pidchild_priority):
child_process = process(child_pidchild_priority)
child_process.father = self
tempProcess = None
#下面的操作处理子进程列表
if int(self.priority) >= int(child_priority):
readyList_add(child_process)
if self.childs == []:
self.childs.append(child_process)
else:
for c in self.childs:
if int(c.priority) == int(child_priority):
pass
else:
tempProcess = c
break
if tempProcess == None:
self.childs.append(child_process)
else:
self.childs.insert(self.childs.index(tempProcess)child_process)
scheduler()
else:
global running_process
running_process = child_process
readyList_add(self)
scheduler()
#销毁进程,同时销毁由其创建的子进程。
def destroy_process(selfpid):
if running_process.pid == pid:
for p in running_process.childs:
self.destroy_process(p.pid)
timeOut()
else:
for p in readyList:
if p.pid == pid:
readyList.remove(p)
for i in p.childs:
self.destroy_process(i.pid)
for p in blockList:
if p.pid == pid:
blockList.remove(p)
for i in p.childs:
self.destroy_process(i.pid)
timeOut()
#进程申请资源,参数1为资源id,参数2位资源数量
def requestSource(selfridcount):
global rListrunning_process
if rid not in ridList:
print(“对不起,无此资源“)
return
else:
for r in rList:
if rid == r.rid:
if int(rList[rList.index(r)].maxCount )< int(count):
print(‘对不起,超出资源最大数量。‘)
elif int(rList[rList.index(r)].count )>=int( count):
rList[rList.index(r)].count -= int(count)
self.reqRes[rid] = count
scheduler()
elif int(rList[rList.index(r)].count )< int(count):
blockList_add(self)
self.status = ‘blocked‘
running_process = readyList[0]
readyList_remove(readyLis
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-03-20 06:41 processMaster-master\
文件 35 2018-03-20 06:41 processMaster-master\README.md
文件 9552 2018-03-20 06:41 processMaster-master\processManager.py
文件 69 2018-03-20 06:41 processMaster-master\sortTest.py
- 上一篇:ipin.py-2014可用
- 下一篇:wenku_test.py
相关资源
- 二级考试python试题12套(包括选择题和
- pywin32_python3.6_64位
- python+ selenium教程
- PycURL(Windows7/Win32)Python2.7安装包 P
- 英文原版-Scientific Computing with Python
- 7.图像风格迁移 基于深度学习 pyt
- 基于Python的学生管理系统
- A Byte of Python(简明Python教程)(第
- Python实例174946
- Python 人脸识别
- Python 人事管理系统
- 基于python-flask的个人博客系统
- 计算机视觉应用开发流程
- python 调用sftp断点续传文件
- python socket游戏
- 基于Python爬虫爬取天气预报信息
- python函数编程和讲解
- Python开发的个人博客
- 基于python的三层神经网络模型搭建
- python实现自动操作windows应用
- python人脸识别(opencv)
- python 绘图(方形、线条、圆形)
- python疫情卡UN管控
- python 连连看小游戏源码
- 基于PyQt5的视频播放器设计
- 一个简单的python爬虫
- csv文件行列转换python实现代码
- Python操作Mysql教程手册
- Python Machine Learning Case Studies
- python获取硬件信息
评论
共有 条评论