-
Notifications
You must be signed in to change notification settings - Fork 0
/
ftest.c
128 lines (123 loc) · 2.9 KB
/
ftest.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
#include "types.h"
#include "stat.h"
#include "user.h"
#include "fcntl.h"
#include "pstat.h"
void
t(int l)
{
int x=0;
for(int i=0;i<l*10000000;i++){
x++;x--;
printf(1,"");
}
}
int
main(void)
{ struct proc_stat *ps=malloc(sizeof(struct proc_stat));
for(int i=0;i<5;i++)
{ int pid=fork();
if(pid==0)
{
switch (i)
{
case 1:
chpr(getpid(),90);
t(3);
break;
case 2:
chpr(getpid(),80);
t(4);
break;
case 3:
chpr(getpid(),65);
t(5);
break;
case 4:
chpr(getpid(),70);
t(6);
break;
default:
chpr(getpid(),85);
t(7);
break;
}
cps();
getpinfo(ps,getpid());
printf(1,"proc stat:\n pid = %d \t current_queue = %d \t num_run = %d\n",ps->pid,ps->current_queue,ps->num_run);
for(int i=0;i<5;i++)
printf(1,"ticks[%d] = %d\n",i,ps->ticks[i]);
exit();
}
}
for(int i=0;i<5;i++)
{
int wtime,rtime;
waitx(&wtime,&rtime);
}
exit();
}
// #include"types.h"
// #include"stat.h"
// #include"user.h"
// #include"fcntl.h"
// void timewaste(int n){
// int x =0;
// for (int i = 0; i < n*1000000; i++)
// {
// x++;
// x--;
// printf(1,"");
// }
// }
// int
// main(int argc, char const *argv[])
// {
// // #if FCFS
// // printf(1,"FCFS\n");
// // #else
// // #if DEFAULT
// // printf(1,"DEFAULT\n");
// // #else
// // #if PBS
// // printf(1,"PBS\n");
// // #endif
// // #endif
// // #endif
// for(int i=0;i<4;i++){
// int pid = fork();
// if(pid==0){
// switch (i)
// {
// case 1:
// chpr(getpid(),90);
// timewaste(4);
// // set_priority(getpid(),100);
// break;
// case 2:
// chpr(getpid(),80);
// timewaste(3);
// // set_priority(getpid(),90);
// break;
// case 3:
// chpr(getpid(),65);
// timewaste(5);
// // set_priority(getpid(),80);
// break;
// default:
// chpr(getpid(),70);
// // set_priority(getpid(),70);
// timewaste(3);
// break;
// }
// cps();
// exit();
// }
// }
// for (int i = 0; i < 4; i++)
// {
// int a, b;
// waitx(&a,&b);
// }
// exit();
// }