struct Semaphore {
int state;
int value;
struct ListHead pcb; // link to all pcb ListHead blocked on this semaphore
};
typedef struct Semaphore Semaphore;
struct Device {
int state;
int value;
struct ListHead pcb; // link to all pcb ListHead blocked on this device
};
typedef struct Device Device;
Semaphore sem[MAX_SEM_NUM];
Device dev[MAX_DEV_NUM];
void initSem() {
int i;
for (i = 0; i < MAX_SEM_NUM; i++) {
sem[i].state = 0; // 0: not in use; 1: in use;
sem[i].value = 0; // >=0: no process blocked; -1: 1 process blocked; -2: 2 process blocked;...
sem[i].pcb.next = &(sem[i].pcb);
sem[i].pcb.prev = &(sem[i].pcb);
}
}
void initDev() {
int i;
for (i = 0; i < MAX_DEV_NUM; i++) {
dev[i].state = 1; // 0: not in use; 1: in use;
dev[i].value = 0; // >=0: no blocked; -1: 1 process blocked; -2: 2 process blocked;...
dev[i].pcb.next = &(dev[i].pcb);
dev[i].pcb.prev = &(dev[i].pcb);
}
}
修改的数据结构:PCB中添加对应的双向链表结构
struct ProcessTable {
uint32_t stack[MAX_STACK_SIZE];
struct TrapFrame regs;
uint32_t stackTop;
uint32_t prevStackTop;
int state;
int timeCount;
int sleepTime;
uint32_t pid;
char name[32];
+ struct ListHead blocked; // sempahore, device, file blocked on
};
typedef struct ProcessTable ProcessTable;