文件名称:进程调度 C语言 操作系统实验
文件大小:173KB
文件格式:DOC
更新时间:2013-01-14 13:19:52
进程调度 C语言 操作系统实验
typedef struct node { char name[10]; int span;//轮转时间 int take;//占用时间 int used;//已用的时间 int need;//还需要的时间 char status;//状态 struct node *next; }PCB;
文件名称:进程调度 C语言 操作系统实验
文件大小:173KB
文件格式:DOC
更新时间:2013-01-14 13:19:52
进程调度 C语言 操作系统实验
typedef struct node { char name[10]; int span;//轮转时间 int take;//占用时间 int used;//已用的时间 int need;//还需要的时间 char status;//状态 struct node *next; }PCB;