-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdriver.c
More file actions
48 lines (36 loc) · 792 Bytes
/
driver.c
File metadata and controls
48 lines (36 loc) · 792 Bytes
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
/**
* Driver.c
*
* Schedule is in the format
*
* [name] [priority] [CPU burst]
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "list.h"
#include "schedulers.h"
#include "task.h"
#define SIZE 100
int main(int argc, char* argv[]) {
FILE* in;
char* temp;
char task[SIZE];
char* name;
int priority;
int burst;
in = fopen(argv[1], "r");
while (fgets(task, SIZE, in) != NULL) {
temp = strdup(task);
name = strsep(&temp, ",");
priority = atoi(strsep(&temp, ","));
burst = atoi(strsep(&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;
}