-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlottery_scheduler.c
58 lines (46 loc) · 975 Bytes
/
lottery_scheduler.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
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
#include "tables.h"
#include "scheduling.h"
#include "pcb.h"
#define TICKETS 100
int lottery_scheduler(void)
{
int tickets[TICKETS];
int pids[PCB_TABLE_SIZE];
int i = 0;
int j = 0;
int k;
int total = 0;
// Find how many processes we can schedule
for (; i < PCB_TABLE_SIZE; i++)
{
if (pcb_table[i].state == READY)
{
total += pcb_table[i].priority;
pids[j++] = pcb_table[i].pid;
pids[j] = 0;
}
}
printf("\nINFO: %d processes ready to be run\n", j);
// If nothing ready
if (total == 0)
return NO_PID_READY;
// Assign tickets
i = 0;
while (j)
{
j -= 1;
k = pcb_table[pids[j]].priority;
k *= TICKETS / total;
printf("\nINFO: Assigning %d tickets to process %d\n", k, pids[j]);
while (k--)
{
tickets[i++] = pids[j];
}
}
// Pick a ticket
//srand(clock());
return tickets[rand()%(i-1)];
}