-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
39 lines (29 loc) · 798 Bytes
/
main.cpp
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
#include "balancer.h"
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <unistd.h>
#define maxntask 20 // Numero inicial de tasks
#define time_delta 1000000 // microsegundos
#define ioprob 25 // X% de probabilidad de i/o
#define iofinished 25 // X% de probabilidad de terminar i/o
#define WAITQUEUE_N 4 // Numero de colas de procesos bloqueados (i/o)
#define CPU_N 4 // Cambiar el número de procesadores no
// se reflejará adecuadamente en la CLI
using namespace std;
int main()
{
srand (time(NULL));
int ntask = 1;
BALANCER balancer(CPU_N, WAITQUEUE_N, time_delta);
while(ntask <= maxntask)
{
TASK *task = new TASK();
task->id = ntask;
ntask++;
balancer.cpu[ntask%CPU_N]->rbt_queue_push(*task);
delete task;
}
while(1){};
return 0;
}