-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
60 lines (56 loc) · 1.38 KB
/
main.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
#include <stdio.h>
#include"TAD-gp.h"
#include"TAD-escalonador.h"
int main ( void )
{
system("clear\n");
char* filename = "input.txt";
GP* gerenciador = newGP(filename);
/* Menu */
int escolha = 0;
int rodando = 1;
while(rodando){
printf("\nEscolha uma Opcao:");
printf("\n 1- Verificar Processos");
printf("\n 2- Ordenar Por Tempo de Chegada");
printf("\n 3- FIFO");
printf("\n 4- Round Robin");
printf("\n 5- SRTF");
printf("\n 6- Fila com Prioridade");
printf("\n 0- Sair\n");
scanf("%d",&escolha);
system("clear\n");
switch ( escolha ) {
case 1:
verificar(gerenciador);
break;
case 2:
printf(" ------ Ordenação -------- ");
sortList(gerenciador->fila_processos);
break;
case 3:
printf(" ------ FIFO -------- ");
FIFO(gerenciador);
break;
case 4:
printf(" ------ Round Robin -------- ");
RR(gerenciador);
break;
case 5:
printf(" ------ SRTF -------- ");
SRTF(gerenciador);
break;
case 6:
printf(" ------ Prioridade -------- ");
PRIORIDADE(gerenciador);
break;
case 0:
rodando = 0;
break;
default:
printf("\n ESCOLHA UMA OPCAO VALIDA! \n");
break;
}
}
return 0;
}