-
亲你一小口
发布于
电路设计
-
0评论
-
12020次浏览
-
1163人收藏
-
2019-07-14 09:25
#include "stdio.h"
#include
#include
#define getpch(type) (type*)malloc(sizeof(type))
#define NULL 0
struct pcb { /* 定义进程控制块PCB */
char name[10];
char state;
int super;
int ntime;
int rtime;
struct pcb* ...