-
操作系统实验中进行进程调度的C语言实现
资源介绍
typedef struct node
{
char name[10];
int span;//轮转时间
int take;//占用时间
int used;//已用的时间
int need;//还需要的时间
char status;//状态
struct node *next;
}PCB;
- 上一篇: 操作系统实验(包括进程创建,C语言使用)
- 下一篇: 读者写者问题 操作系统课程设计 C语言