forked from brunoanndre/ScheduleSO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdriver.c
47 lines (37 loc) · 955 Bytes
/
driver.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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include "schedule_rr_p.c"
//#include "schedule_edf.h"
#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("rr-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); // Faz uma c�pia da string usando strdup
temp = strtok(NULL, ",");
priority = atoi(temp);
temp = strtok(NULL, ",");
burst = atoi(temp);
// add the task to the scheduler's list of tasks
add(name,priority,burst);
free(temp);
}
fclose(in);
// invoke the scheduler
schedule();
return 0;
}