forked from brunoanndre/ScheduleSO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdriver-edf.c
53 lines (41 loc) · 1.03 KB
/
driver-edf.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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include "schedule_edf.c"
#define SIZE 100
int main(int argc, char *argv[]){
FILE *in;
char *temp;
char task[SIZE];
char *name;
int priority;
int burst;
int deadline;
//in = fopen(argv[1],"r");
in = fopen("edf-schedule_pri.txt", "r");
if(in == NULL){
printf("erro ao abrir o arquivocr\n");
}
while (fgets(task,SIZE,in) != NULL) {
char *temp;
temp = strtok(task, ",");
name = strdup(temp);
temp = strtok(NULL, ",");
priority = atoi(temp);
temp = strtok(NULL, ",");
burst = atoi(temp);
temp = strtok(NULL, ",");
//Only to EDF algorithm
deadline = atoi(temp);
// add the task to the scheduler's list of tasks
//add(name,priority,burst);
//to EDF only
add(name,priority,burst,deadline);
free(temp);
}
fclose(in);
// invoke the scheduler
scheduleEDF();
return 0;
}