文件名称:process
介绍说明--下载内容均来自于网络,请自行研究使用
简单轮转法进程调度
#include "stdio.h"
#define getpch(type) (type*)malloc(sizeof(type))
struct pcb { /* 定义进程控制块PCB */
char name[10]
char state /*状态 */
int ntime /*需要的运行时间 */
int rtime /*已执行的时间 */
struct pcb* link /*下一个进程控制块的地址 */
}*ready=NULL,*p /*ready为就绪队列,p指向现在操作的进程进行操作*/
-typedef struct pcb PCB
#include "stdio.h"
#define getpch(type) (type*)malloc(sizeof(type))
struct pcb { /* 定义进程控制块PCB */
char name[10]
char state /*状态 */
int ntime /*需要的运行时间 */
int rtime /*已执行的时间 */
struct pcb* link /*下一个进程控制块的地址 */
}*ready=NULL,*p /*ready为就绪队列,p指向现在操作的进程进行操作*/
-typedef struct pcb PCB
(系统自动生成,下载前可以参看下载内容)
下载文件列表
process.c