-
Notifications
You must be signed in to change notification settings - Fork 0
/
NUCLEO.C
171 lines (141 loc) · 3.83 KB
/
NUCLEO.C
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
#include <stdio.h>
#include <dos.h> far
#include <setjmp.h>
#include <alloc.h>
#include <stdlib.h>
#include <string.h>
#include <system.h>
typedef struct registros {
unsigned bx1, es1;
} regis;
typedef union k {
regis x;
char far *y;
} APONTA_REG_CRIT;
typedef struct desc_p {
char nome[35];
enum {ativo, bloq_p,terminado} estado;
PTR_DESC contexto;
struct desc_p *fila_sem;
struct desc_p *prox;
} DESCRITOR_PROC;
typedef DESCRITOR_PROC *PTR_DESC_PROC;
typedef struct {
int s;
PTR_DESC_PROC Q;
} semaforo;
APONTA_REG_CRIT a;
PTR_DESC_PROC prim = NULL;
PTR_DESC d_esc;
void far inicia_semaforo(semaforo *sem, int n) {
sem->s = n;
sem->Q = NULL;
}
PTR_DESC_PROC far procura_prox_ativo() {
PTR_DESC_PROC tmp;
tmp = prim->prox;
while(tmp->prox != prim) {
if(tmp->estado == ativo) {
return tmp;
}
else {
tmp = tmp->prox;
}
}
return NULL;
}
void far volta_dos() {
disable();
setvect(8, p_est->int_anterior);
enable();
exit(0);
}
void far p(semaforo *sem) {
PTR_DESC_PROC aux;
disable();
if (sem->s > 0) {
sem->s--;
}
else {
prim->estado = bloq_p;
if (sem->Q == NULL) {
sem->Q = prim;
prim->fila_sem = NULL;
}
else {
aux = sem->Q;
while (aux->fila_sem != NULL) {
aux = aux->fila_sem;
}
aux->fila_sem = prim;
prim->fila_sem = NULL;
}
aux = prim;
if((prim = procura_prox_ativo()) == NULL) {
volta_dos();
}
transfer(aux->contexto, prim->contexto);
}
enable();
}
void far v(semaforo *sem) {
PTR_DESC_PROC aux;
disable();
if (sem->Q != NULL) {
sem->Q->estado = ativo;
aux = sem->Q->fila_sem;
sem->Q = aux;
}
else {
sem->s++;
}
enable();
}
void far cria_processo (char nome_p[], void far (*end_proc)()) {
PTR_DESC_PROC p_aux;
if((p_aux = (PTR_DESC_PROC)malloc(sizeof(DESCRITOR_PROC))) == NULL) {
exit(1);
}
strcpy(p_aux->nome, nome_p);
p_aux->estado = ativo;
p_aux->contexto = cria_desc();
newprocess(end_proc, p_aux->contexto);
if(prim == NULL) {
prim = p_aux;
}
else {
p_aux->prox = prim->prox;
}
prim->prox = p_aux;
}
void far escalador() {
p_est->p_origem = d_esc;
p_est->p_destino = prim->contexto;
p_est->num_vetor = 8;
_AH = 0x34;
_AL = 0x00;
geninterrupt(0x21);
while(1) {
iotransfer();
disable();
if((prim = procura_prox_ativo()) == NULL) {
volta_dos();
}
p_est->p_destino = prim->contexto;
enable();
}
}
void far dispara_sistema() {
PTR_DESC d_dispara;
d_esc = cria_desc();
newprocess(escalador, d_esc);
d_dispara = cria_desc();
transfer(d_dispara, d_esc);
}
void far termina_processo() {
disable();
prim->estado = terminado;
enable();
while(1);
}