Ta上传的资源 (0)

typedef struct pcb{ char name[N]; //进程名 char state; //状态 int arrivetime; //到达时间 int runtime; //估计运行时间 int etime; //周转时间 struct pcb *next; }PCB;
OS 29