-
Notifications
You must be signed in to change notification settings - Fork 0
/
graph_log_unfiltred.txt
2363 lines (2363 loc) · 139 KB
/
graph_log_unfiltred.txt
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
gcc -Werror -Wall -o mkfs mkfs.c
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o ulib.o ulib.c
gcc -m32 -gdwarf-2 -Wa,-divide -c -o usys.o usys.S
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o printf.o printf.c
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o umalloc.o umalloc.c
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o cat.o cat.c
ld -m elf_i386 -N -e main -Ttext 0 -o _cat cat.o ulib.o usys.o printf.o umalloc.o
objdump -S _cat > cat.asm
objdump -t _cat | sed '1,/SYMBOL TABLE/d; s/ .* / /; /^$/d' > cat.sym
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o echo.o echo.c
ld -m elf_i386 -N -e main -Ttext 0 -o _echo echo.o ulib.o usys.o printf.o umalloc.o
objdump -S _echo > echo.asm
objdump -t _echo | sed '1,/SYMBOL TABLE/d; s/ .* / /; /^$/d' > echo.sym
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o forktest.o forktest.c
# forktest has less library code linked in - needs to be small
# in order to be able to max out the proc table.
ld -m elf_i386 -N -e main -Ttext 0 -o _forktest forktest.o ulib.o usys.o
objdump -S _forktest > forktest.asm
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o grep.o grep.c
ld -m elf_i386 -N -e main -Ttext 0 -o _grep grep.o ulib.o usys.o printf.o umalloc.o
objdump -S _grep > grep.asm
objdump -t _grep | sed '1,/SYMBOL TABLE/d; s/ .* / /; /^$/d' > grep.sym
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o init.o init.c
ld -m elf_i386 -N -e main -Ttext 0 -o _init init.o ulib.o usys.o printf.o umalloc.o
objdump -S _init > init.asm
objdump -t _init | sed '1,/SYMBOL TABLE/d; s/ .* / /; /^$/d' > init.sym
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o kill.o kill.c
ld -m elf_i386 -N -e main -Ttext 0 -o _kill kill.o ulib.o usys.o printf.o umalloc.o
objdump -S _kill > kill.asm
objdump -t _kill | sed '1,/SYMBOL TABLE/d; s/ .* / /; /^$/d' > kill.sym
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o ln.o ln.c
ld -m elf_i386 -N -e main -Ttext 0 -o _ln ln.o ulib.o usys.o printf.o umalloc.o
objdump -S _ln > ln.asm
objdump -t _ln | sed '1,/SYMBOL TABLE/d; s/ .* / /; /^$/d' > ln.sym
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o ls.o ls.c
ld -m elf_i386 -N -e main -Ttext 0 -o _ls ls.o ulib.o usys.o printf.o umalloc.o
objdump -S _ls > ls.asm
objdump -t _ls | sed '1,/SYMBOL TABLE/d; s/ .* / /; /^$/d' > ls.sym
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o mkdir.o mkdir.c
ld -m elf_i386 -N -e main -Ttext 0 -o _mkdir mkdir.o ulib.o usys.o printf.o umalloc.o
objdump -S _mkdir > mkdir.asm
objdump -t _mkdir | sed '1,/SYMBOL TABLE/d; s/ .* / /; /^$/d' > mkdir.sym
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o rm.o rm.c
ld -m elf_i386 -N -e main -Ttext 0 -o _rm rm.o ulib.o usys.o printf.o umalloc.o
objdump -S _rm > rm.asm
objdump -t _rm | sed '1,/SYMBOL TABLE/d; s/ .* / /; /^$/d' > rm.sym
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o sh.o sh.c
ld -m elf_i386 -N -e main -Ttext 0 -o _sh sh.o ulib.o usys.o printf.o umalloc.o
objdump -S _sh > sh.asm
objdump -t _sh | sed '1,/SYMBOL TABLE/d; s/ .* / /; /^$/d' > sh.sym
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o stressfs.o stressfs.c
ld -m elf_i386 -N -e main -Ttext 0 -o _stressfs stressfs.o ulib.o usys.o printf.o umalloc.o
objdump -S _stressfs > stressfs.asm
objdump -t _stressfs | sed '1,/SYMBOL TABLE/d; s/ .* / /; /^$/d' > stressfs.sym
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o usertests.o usertests.c
ld -m elf_i386 -N -e main -Ttext 0 -o _usertests usertests.o ulib.o usys.o printf.o umalloc.o
objdump -S _usertests > usertests.asm
objdump -t _usertests | sed '1,/SYMBOL TABLE/d; s/ .* / /; /^$/d' > usertests.sym
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o wc.o wc.c
ld -m elf_i386 -N -e main -Ttext 0 -o _wc wc.o ulib.o usys.o printf.o umalloc.o
objdump -S _wc > wc.asm
objdump -t _wc | sed '1,/SYMBOL TABLE/d; s/ .* / /; /^$/d' > wc.sym
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o zombie.o zombie.c
ld -m elf_i386 -N -e main -Ttext 0 -o _zombie zombie.o ulib.o usys.o printf.o umalloc.o
objdump -S _zombie > zombie.asm
objdump -t _zombie | sed '1,/SYMBOL TABLE/d; s/ .* / /; /^$/d' > zombie.sym
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o time.o time.c
ld -m elf_i386 -N -e main -Ttext 0 -o _time time.o ulib.o usys.o printf.o umalloc.o
objdump -S _time > time.asm
objdump -t _time | sed '1,/SYMBOL TABLE/d; s/ .* / /; /^$/d' > time.sym
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o ps.o ps.c
ld -m elf_i386 -N -e main -Ttext 0 -o _ps ps.o ulib.o usys.o printf.o umalloc.o
objdump -S _ps > ps.asm
objdump -t _ps | sed '1,/SYMBOL TABLE/d; s/ .* / /; /^$/d' > ps.sym
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o setPriority.o setPriority.c
ld -m elf_i386 -N -e main -Ttext 0 -o _setPriority setPriority.o ulib.o usys.o printf.o umalloc.o
objdump -S _setPriority > setPriority.asm
objdump -t _setPriority | sed '1,/SYMBOL TABLE/d; s/ .* / /; /^$/d' > setPriority.sym
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o tester.o tester.c
ld -m elf_i386 -N -e main -Ttext 0 -o _tester tester.o ulib.o usys.o printf.o umalloc.o
objdump -S _tester > tester.asm
objdump -t _tester | sed '1,/SYMBOL TABLE/d; s/ .* / /; /^$/d' > tester.sym
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o tester_pbs.o tester_pbs.c
ld -m elf_i386 -N -e main -Ttext 0 -o _tester_pbs tester_pbs.o ulib.o usys.o printf.o umalloc.o
objdump -S _tester_pbs > tester_pbs.asm
objdump -t _tester_pbs | sed '1,/SYMBOL TABLE/d; s/ .* / /; /^$/d' > tester_pbs.sym
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o tester_mlfq.o tester_mlfq.c
ld -m elf_i386 -N -e main -Ttext 0 -o _tester_mlfq tester_mlfq.o ulib.o usys.o printf.o umalloc.o
objdump -S _tester_mlfq > tester_mlfq.asm
objdump -t _tester_mlfq | sed '1,/SYMBOL TABLE/d; s/ .* / /; /^$/d' > tester_mlfq.sym
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o tester_ps.o tester_ps.c
ld -m elf_i386 -N -e main -Ttext 0 -o _tester_ps tester_ps.o ulib.o usys.o printf.o umalloc.o
objdump -S _tester_ps > tester_ps.asm
objdump -t _tester_ps | sed '1,/SYMBOL TABLE/d; s/ .* / /; /^$/d' > tester_ps.sym
./mkfs fs.img README _cat _echo _forktest _grep _init _kill _ln _ls _mkdir _rm _sh _stressfs _usertests _wc _zombie _time _ps _setPriority _tester _tester_pbs _tester_mlfq _tester_ps
nmeta 59 (boot, super, log blocks 30 inode blocks 26, bitmap blocks 1) blocks 941 total 1000
balloc: first 894 blocks have been allocated
balloc: write bitmap block at sector 58
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -fno-pic -O -nostdinc -I. -c bootmain.c
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -fno-pic -nostdinc -I. -c bootasm.S
ld -m elf_i386 -N -e start -Ttext 0x7C00 -o bootblock.o bootasm.o bootmain.o
objdump -S bootblock.o > bootblock.asm
objcopy -S -O binary -j .text bootblock.o bootblock
./sign.pl bootblock
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o bio.o bio.c
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o console.o console.c
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o exec.o exec.c
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o file.o file.c
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o fs.o fs.c
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o ide.o ide.c
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o ioapic.o ioapic.c
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o kalloc.o kalloc.c
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o kbd.o kbd.c
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o lapic.o lapic.c
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o log.o log.c
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o main.o main.c
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o mp.o mp.c
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o picirq.o picirq.c
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o pipe.o pipe.c
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o proc.o proc.c
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o sleeplock.o sleeplock.c
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o spinlock.o spinlock.c
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o string.o string.c
gcc -m32 -gdwarf-2 -Wa,-divide -c -o swtch.o swtch.S
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o syscall.o syscall.c
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o sysfile.o sysfile.c
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o sysproc.o sysproc.c
gcc -m32 -gdwarf-2 -Wa,-divide -c -o trapasm.o trapasm.S
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o trap.o trap.c
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o uart.o uart.c
./vectors.pl > vectors.S
gcc -m32 -gdwarf-2 -Wa,-divide -c -o vectors.o vectors.S
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -c -o vm.o vm.c
gcc -m32 -gdwarf-2 -Wa,-divide -c -o entry.o entry.S
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -fno-pic -nostdinc -I. -c entryother.S
ld -m elf_i386 -N -e start -Ttext 0x7000 -o bootblockother.o entryother.o
objcopy -S -O binary -j .text bootblockother.o entryother
objdump -S bootblockother.o > entryother.asm
gcc -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer -D MLFQ -fno-stack-protector -fno-pie -no-pie -nostdinc -I. -c initcode.S
ld -m elf_i386 -N -e start -Ttext 0 -o initcode.out initcode.o
objcopy -S -O binary initcode.out initcode
objdump -S initcode.o > initcode.asm
ld -m elf_i386 -T kernel.ld -o kernel entry.o bio.o console.o exec.o file.o fs.o ide.o ioapic.o kalloc.o kbd.o lapic.o log.o main.o mp.o picirq.o pipe.o proc.o sleeplock.o spinlock.o string.o swtch.o syscall.o sysfile.o sysproc.o trapasm.o trap.o uart.o vectors.o vm.o -b binary initcode entryother
objdump -S kernel > kernel.asm
objdump -t kernel | sed '1,/SYMBOL TABLE/d; s/ .* / /; /^$/d' > kernel.sym
dd if=/dev/zero of=xv6.img count=10000
dd if=bootblock of=xv6.img conv=notrunc
dd if=kernel of=xv6.img seek=1 conv=notrunc
qemu-system-x86_64 -serial mon:stdio -drive file=fs.img,index=1,media=disk,format=raw -drive file=xv6.img,index=0,media=disk,format=raw -smp 1 -m 512
xv6...
cpu0: starting 0
sb: size 1000 nblocks 941 ninodes 200 nlog 30 logstart 2 inodestart 32 bmap start 58
init: starting sh
$ tester_mlfq
Process with PID 3 added to Queue 0 at 690
Process with PID 3 is removed from Queue 0 at 690
Scheduling sh with PID 3 from Queue 0 with current tick 1 at tick 690
Process with PID 3 added to Queue 1 at 691
Process with PID 3 is removed from Queue 1 at 691
Scheduling sh with PID 3 from Queue 1 with current tick 1 at tick 691
Process with PID 3 added to Queue 1 at 691
Process with PID 3 is removed from Queue 1 at 691
Scheduling sh with PID 3 from Queue 1 with current tick 1 at tick 691
Process with PID 3 added to Queue 1 at 691
Process with PID 3 is removed from Queue 1 at 691
Scheduling sh with PID 3 from Queue 1 with current tick 1 at tick 691
Process with PID 3 added to Queue 1 at 691
Process with PID 3 is removed from Queue 1 at 691
Scheduling sh with PID 3 from Queue 1 with current tick 1 at tick 691
Process with PID 3 added to Queue 1 at 692
Process with PID 3 is removed from Queue 1 at 692
Scheduling sh with PID 3 from Queue 1 with current tick 1 at tick 692
Process with PID 3 added to Queue 1 at 692
Process with PID 3 is removed from Queue 1 at 692
Scheduling sh with PID 3 from Queue 1 with current tick 1 at tick 692
Process with PID 3 added to Queue 1 at 692
Process with PID 3 is removed from Queue 1 at 692
Scheduling sh with PID 3 from Queue 1 with current tick 1 at tick 692
Process with PID 4 added to Queue 0 at 693
Process with PID 5 added to Queue 0 at 693
Process with PID 6 added to Queue 0 at 693
Process with PID 3 added to Queue 2 at 694
Process with PID 4 is removed from Queue 0 at 694
Scheduling tester_mlfq with PID 4 from Queue 0 with current tick 1 at tick 694
Process with PID 5 is removed from Queue 0 at 694
Scheduling tester_mlfq with PID 5 from Queue 0 with current tick 1 at tick 694
Process with PID 6 is removed from Queue 0 at 694
Scheduling tester_mlfq with PID 6 from Queue 0 with current tick 1 at tick 694
Process with PID 3 is removed from Queue 2 at 694
Scheduling tester_mlfq with PID 3 from Queue 2 with current tick 1 at tick 694
Process with PID 7 added to Queue 0 at 694
Process with PID 4 added to Queue 0 at 695
Process with PID 5 added to Queue 0 at 695
Process with PID 6 added to Queue 0 at 695
Process with PID 8 added to Queue 0 at 695
Process with PID 7 is removed from Queue 0 at 695
Scheduling tester_mlfq with PID 7 from Queue 0 with current tick 1 at tick 695
Process with PID 4 is removed from Queue 0 at 695
Scheduling tester_mlfq with PID 4 from Queue 0 with current tick 1 at tick 695
Process with PID 5 is removed from Queue 0 at 695
Scheduling tester_mlfq with PID 5 from Queue 0 with current tick 1 at tick 695
Process with PID 4 added to Queue 0 at 696
Process with PID 7 added to Queue 0 at 696
Process with PID 5 added to Queue 1 at 696
Process with PID 6 is removed from Queue 0 at 696
Scheduling tester_mlfq with PID 6 from Queue 0 with current tick 1 at tick 696
Process with PID 8 is removed from Queue 0 at 696
Scheduling tester_mlfq with PID 8 from Queue 0 with current tick 1 at tick 696
Process with PID 4 is removed from Queue 0 at 696
Scheduling tester_mlfq with PID 4 from Queue 0 with current tick 1 at tick 696
Process with PID 7 is removed from Queue 0 at 696
Scheduling tester_mlfq with PID 7 from Queue 0 with current tick 1 at tick 696
Process with PID 5 is removed from Queue 1 at 696
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 696
Process with PID 4 added to Queue 0 at 697
Process with PID 5 added to Queue 1 at 697
Process with PID 6 added to Queue 0 at 697
Process with PID 7 added to Queue 0 at 697
Process with PID 8 added to Queue 0 at 697
Process with PID 4 is removed from Queue 0 at 697
Scheduling tester_mlfq with PID 4 from Queue 0 with current tick 1 at tick 697
Process with PID 6 is removed from Queue 0 at 697
Scheduling tester_mlfq with PID 6 from Queue 0 with current tick 1 at tick 697
Process with PID 7 is removed from Queue 0 at 697
Scheduling tester_mlfq with PID 7 from Queue 0 with current tick 1 at tick 697
Process with PID 8 is removed from Queue 0 at 697
Scheduling tester_mlfq with PID 8 from Queue 0 with current tick 1 at tick 697
Process with PID 4 added to Queue 0 at 698
Process with PID 6 added to Queue 0 at 698
Process with PID 7 added to Queue 0 at 698
Process with PID 8 added to Queue 1 at 698
Process with PID 4 is removed from Queue 0 at 698
Scheduling tester_mlfq with PID 4 from Queue 0 with current tick 1 at tick 698
Process with PID 6 is removed from Queue 0 at 698
Scheduling tester_mlfq with PID 6 from Queue 0 with current tick 1 at tick 698
Process with PID 7 is removed from Queue 0 at 698
Scheduling tester_mlfq with PID 7 from Queue 0 with current tick 1 at tick 698
Process with PID 5 is removed from Queue 1 at 698
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 698
Process with PID 8 is removed from Queue 1 at 698
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 698
Process with PID 4 added to Queue 0 at 699
Process with PID 5 added to Queue 1 at 699
Process with PID 6 added to Queue 0 at 699
Process with PID 7 added to Queue 0 at 699
Process with PID 4 is removed from Queue 0 at 699
Scheduling tester_mlfq with PID 4 from Queue 0 with current tick 1 at tick 699
Process with PID 6 is removed from Queue 0 at 699
Scheduling tester_mlfq with PID 6 from Queue 0 with current tick 1 at tick 699
Process with PID 7 is removed from Queue 0 at 699
Scheduling tester_mlfq with PID 7 from Queue 0 with current tick 1 at tick 699
Process with PID 5 is removed from Queue 1 at 699
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 699
Process with PID 4 added to Queue 0 at 700
Process with PID 5 added to Queue 1 at 700
Process with PID 6 added to Queue 0 at 700
Process with PID 7 added to Queue 0 at 700
Process with PID 8 added to Queue 1 at 700
Process with PID 4 is removed from Queue 0 at 700
Scheduling tester_mlfq with PID 4 from Queue 0 with current tick 1 at tick 700
Process with PID 6 is removed from Queue 0 at 700
Scheduling tester_mlfq with PID 6 from Queue 0 with current tick 1 at tick 700
Process with PID 7 is removed from Queue 0 at 700
Scheduling tester_mlfq with PID 7 from Queue 0 with current tick 1 at tick 700
Process with PID 5 is removed from Queue 1 at 700
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 700
Process with PID 4 added to Queue 0 at 701
Process with PID 6 added to Queue 0 at 701
Process with PID 7 added to Queue 0 at 701
Process with PID 4 is removed from Queue 0 at 701
Scheduling tester_mlfq with PID 4 from Queue 0 with current tick 1 at tick 701
Process with PID 6 is removed from Queue 0 at 701
Scheduling tester_mlfq with PID 6 from Queue 0 with current tick 1 at tick 701
Process with PID 4 added to Queue 0 at 702
Process with PID 5 added to Queue 1 at 702
Process with PID 6 added to Queue 1 at 702
Process with PID 7 is removed from Queue 0 at 702
Scheduling tester_mlfq with PID 7 from Queue 0 with current tick 1 at tick 702
Process with PID 4 is removed from Queue 0 at 702
Scheduling tester_mlfq with PID 4 from Queue 0 with current tick 1 at tick 702
Process with PID 7 added to Queue 0 at 703
Process with PID 4 added to Queue 1 at 703
Process with PID 7 is removed from Queue 0 at 703
Scheduling tester_mlfq with PID 7 from Queue 0 with current tick 1 at tick 703
Process with PID 8 is removed from Queue 1 at 703
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 703
Process with PID 7 added to Queue 0 at 704
Process with PID 7 is removed from Queue 0 at 704
Scheduling tester_mlfq with PID 7 from Queue 0 with current tick 1 at tick 704
Process with PID 5 is removed from Queue 1 at 704
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 704
Process with PID 6 is removed from Queue 1 at 704
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 704
Process with PID 5 added to Queue 1 at 705
Process with PID 7 added to Queue 0 at 705
Process with PID 8 added to Queue 1 at 705
Process with PID 7 is removed from Queue 0 at 705
Scheduling tester_mlfq with PID 7 from Queue 0 with current tick 1 at tick 705
Process with PID 4 is removed from Queue 1 at 705
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 705
Process with PID 6 added to Queue 1 at 706
Process with PID 7 added to Queue 0 at 706
Process with PID 7 is removed from Queue 0 at 706
Scheduling tester_mlfq with PID 7 from Queue 0 with current tick 1 at tick 706
Process with PID 5 is removed from Queue 1 at 706
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 706
Process with PID 4 added to Queue 1 at 707
Process with PID 7 added to Queue 0 at 707
Process with PID 7 is removed from Queue 0 at 707
Scheduling tester_mlfq with PID 7 from Queue 0 with current tick 1 at tick 707
Process with PID 8 is removed from Queue 1 at 707
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 707
Process with PID 6 is removed from Queue 1 at 707
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 707
Process with PID 5 added to Queue 1 at 708
Process with PID 7 added to Queue 0 at 708
Process with PID 8 added to Queue 1 at 708
Process with PID 7 is removed from Queue 0 at 708
Scheduling tester_mlfq with PID 7 from Queue 0 with current tick 1 at tick 708
Process with PID 4 is removed from Queue 1 at 708
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 708
Process with PID 5 is removed from Queue 1 at 708
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 708
Process with PID 8 is removed from Queue 1 at 708
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 708
Process with PID 4 added to Queue 1 at 709
Process with PID 5 added to Queue 1 at 709
Process with PID 6 added to Queue 1 at 709
Process with PID 7 added to Queue 0 at 709
Process with PID 8 added to Queue 1 at 709
Process with PID 7 is removed from Queue 0 at 709
Scheduling tester_mlfq with PID 7 from Queue 0 with current tick 1 at tick 709
Process with PID 4 is removed from Queue 1 at 709
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 709
Process with PID 5 is removed from Queue 1 at 709
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 709
Process with PID 6 is removed from Queue 1 at 709
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 709
Process with PID 8 is removed from Queue 1 at 709
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 709
Process with PID 4 added to Queue 1 at 710
Process with PID 5 added to Queue 1 at 710
Process with PID 6 added to Queue 1 at 710
Process with PID 7 added to Queue 0 at 710
Process with PID 7 is removed from Queue 0 at 710
Scheduling tester_mlfq with PID 7 from Queue 0 with current tick 1 at tick 710
Process with PID 4 is removed from Queue 1 at 710
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 710
Process with PID 7 added to Queue 0 at 711
Process with PID 8 added to Queue 1 at 711
Process with PID 7 is removed from Queue 0 at 711
Scheduling tester_mlfq with PID 7 from Queue 0 with current tick 1 at tick 711
Process with PID 5 is removed from Queue 1 at 711
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 711
Process with PID 6 is removed from Queue 1 at 711
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 711
Process with PID 8 is removed from Queue 1 at 711
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 711
Process with PID 4 added to Queue 1 at 712
Process with PID 5 added to Queue 1 at 712
Process with PID 6 added to Queue 1 at 712
Process with PID 7 added to Queue 0 at 712
Process with PID 8 added to Queue 1 at 712
Process with PID 7 is removed from Queue 0 at 712
Scheduling tester_mlfq with PID 7 from Queue 0 with current tick 1 at tick 712
Process with PID 7 added to Queue 1 at 713
Process with PID 4 is removed from Queue 1 at 713
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 713
Process with PID 5 is removed from Queue 1 at 713
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 713
Process with PID 6 is removed from Queue 1 at 713
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 713
Process with PID 8 is removed from Queue 1 at 713
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 713
Process with PID 4 added to Queue 1 at 714
Process with PID 5 added to Queue 1 at 714
Process with PID 6 added to Queue 1 at 714
Process with PID 7 is removed from Queue 1 at 714
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 714
Process with PID 4 is removed from Queue 1 at 714
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 714
Process with PID 5 is removed from Queue 1 at 714
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 714
Process with PID 6 is removed from Queue 1 at 714
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 714
Process with PID 4 added to Queue 1 at 715
Process with PID 5 added to Queue 1 at 715
Process with PID 6 added to Queue 1 at 715
Process with PID 7 added to Queue 1 at 715
Process with PID 8 added to Queue 1 at 715
Process with PID 4 is removed from Queue 1 at 715
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 715
Process with PID 5 is removed from Queue 1 at 715
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 715
Process with PID 6 is removed from Queue 1 at 715
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 715
Process with PID 7 is removed from Queue 1 at 715
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 715
Process with PID 4 added to Queue 1 at 716
Process with PID 5 added to Queue 1 at 716
Process with PID 6 added to Queue 1 at 716
Process with PID 8 is removed from Queue 1 at 716
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 716
Process with PID 4 is removed from Queue 1 at 716
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 716
Process with PID 5 is removed from Queue 1 at 716
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 716
Process with PID 6 is removed from Queue 1 at 716
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 716
Process with PID 4 added to Queue 1 at 717
Process with PID 5 added to Queue 1 at 717
Process with PID 6 added to Queue 1 at 717
Process with PID 7 added to Queue 1 at 717
Process with PID 8 added to Queue 1 at 717
Process with PID 4 is removed from Queue 1 at 717
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 717
Process with PID 5 is removed from Queue 1 at 717
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 717
Process with PID 6 is removed from Queue 1 at 717
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 717
Process with PID 7 is removed from Queue 1 at 717
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 717
Process with PID 8 is removed from Queue 1 at 717
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 717
Process with PID 4 added to Queue 1 at 718
Process with PID 5 added to Queue 1 at 718
Process with PID 6 added to Queue 1 at 718
Process with PID 7 added to Queue 1 at 718
Process with PID 4 is removed from Queue 1 at 718
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 718
Process with PID 5 is removed from Queue 1 at 718
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 718
Process with PID 6 is removed from Queue 1 at 718
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 718
Process with PID 7 is removed from Queue 1 at 718
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 718
Process with PID 4 added to Queue 1 at 719
Process with PID 5 added to Queue 1 at 719
Process with PID 6 added to Queue 1 at 719
Process with PID 8 added to Queue 1 at 719
Process with PID 4 is removed from Queue 1 at 719
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 719
Process with PID 5 is removed from Queue 1 at 719
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 719
Process with PID 6 is removed from Queue 1 at 719
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 719
Process with PID 8 is removed from Queue 1 at 719
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 719
Process with PID 4 added to Queue 1 at 720
Process with PID 5 added to Queue 1 at 720
Process with PID 6 added to Queue 1 at 720
Process with PID 7 added to Queue 1 at 720
Process with PID 8 added to Queue 1 at 720
Process with PID 4 is removed from Queue 1 at 720
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 720
Process with PID 5 is removed from Queue 1 at 720
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 720
Process with PID 6 is removed from Queue 1 at 720
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 720
Process with PID 7 is removed from Queue 1 at 720
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 720
Process with PID 8 is removed from Queue 1 at 720
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 720
Process with PID 4 added to Queue 1 at 721
Process with PID 5 added to Queue 1 at 721
Process with PID 6 added to Queue 1 at 721
Process with PID 7 added to Queue 1 at 721
Process with PID 4 is removed from Queue 1 at 721
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 721
Process with PID 5 is removed from Queue 1 at 721
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 721
Process with PID 6 is removed from Queue 1 at 721
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 721
Process with PID 7 is removed from Queue 1 at 721
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 721
Process with PID 4 added to Queue 1 at 722
Process with PID 5 added to Queue 1 at 722
Process with PID 6 added to Queue 1 at 722
Process with PID 8 added to Queue 1 at 722
Process with PID 4 is removed from Queue 1 at 722
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 722
Process with PID 5 is removed from Queue 1 at 722
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 722
Process with PID 6 is removed from Queue 1 at 722
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 722
Process with PID 8 is removed from Queue 1 at 722
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 722
Process with PID 4 added to Queue 1 at 723
Process with PID 5 added to Queue 1 at 723
Process with PID 6 added to Queue 1 at 723
Process with PID 7 added to Queue 1 at 723
Process with PID 8 added to Queue 1 at 723
Process with PID 4 is removed from Queue 1 at 723
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 723
Process with PID 5 is removed from Queue 1 at 723
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 723
Process with PID 6 is removed from Queue 1 at 723
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 723
Process with PID 7 is removed from Queue 1 at 723
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 723
Process with PID 8 is removed from Queue 1 at 723
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 723
Process with PID 4 added to Queue 1 at 724
Process with PID 5 added to Queue 1 at 724
Process with PID 6 added to Queue 1 at 724
Process with PID 7 added to Queue 1 at 724
Process with PID 4 is removed from Queue 1 at 724
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 724
Process with PID 5 is removed from Queue 1 at 724
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 724
Process with PID 6 is removed from Queue 1 at 724
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 724
Process with PID 7 is removed from Queue 1 at 724
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 724
Process with PID 4 added to Queue 1 at 725
Process with PID 5 added to Queue 1 at 725
Process with PID 6 added to Queue 1 at 725
Process with PID 8 added to Queue 1 at 725
Process with PID 4 is removed from Queue 1 at 725
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 725
Process with PID 5 is removed from Queue 1 at 725
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 725
Process with PID 6 is removed from Queue 1 at 725
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 725
Process with PID 8 is removed from Queue 1 at 725
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 725
Process with PID 4 added to Queue 1 at 726
Process with PID 5 added to Queue 1 at 726
Process with PID 6 added to Queue 1 at 726
Process with PID 7 added to Queue 1 at 726
Process with PID 8 added to Queue 1 at 726
Process with PID 4 is removed from Queue 1 at 726
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 726
Process with PID 5 is removed from Queue 1 at 726
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 726
Process with PID 6 is removed from Queue 1 at 726
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 726
Process with PID 7 is removed from Queue 1 at 726
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 726
Process with PID 8 is removed from Queue 1 at 726
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 726
Process with PID 4 added to Queue 1 at 727
Process with PID 5 added to Queue 1 at 727
Process with PID 6 added to Queue 1 at 727
Process with PID 7 added to Queue 1 at 727
Process with PID 4 is removed from Queue 1 at 727
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 727
Process with PID 5 is removed from Queue 1 at 727
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 727
Process with PID 6 is removed from Queue 1 at 727
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 727
Process with PID 7 is removed from Queue 1 at 727
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 727
Process with PID 4 added to Queue 1 at 728
Process with PID 5 added to Queue 1 at 728
Process with PID 6 added to Queue 1 at 728
Process with PID 8 added to Queue 1 at 728
Process with PID 4 is removed from Queue 1 at 728
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 728
Process with PID 5 is removed from Queue 1 at 728
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 728
Process with PID 6 is removed from Queue 1 at 728
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 728
Process with PID 8 is removed from Queue 1 at 728
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 728
Process with PID 4 added to Queue 1 at 729
Process with PID 5 added to Queue 1 at 729
Process with PID 6 added to Queue 1 at 729
Process with PID 7 added to Queue 1 at 729
Process with PID 4 is removed from Queue 1 at 729
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 729
Process with PID 5 is removed from Queue 1 at 729
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 729
Process with PID 6 is removed from Queue 1 at 729
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 729
Process with PID 7 is removed from Queue 1 at 729
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 729
Process with PID 4 added to Queue 1 at 730
Process with PID 5 added to Queue 1 at 730
Process with PID 6 added to Queue 1 at 730
Process with PID 7 added to Queue 1 at 730
Process with PID 8 added to Queue 1 at 730
Process with PID 4 is removed from Queue 1 at 730
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 730
Process with PID 5 is removed from Queue 1 at 730
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 730
Process with PID 6 is removed from Queue 1 at 730
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 730
Process with PID 7 is removed from Queue 1 at 730
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 730
Process with PID 4 added to Queue 1 at 731
Process with PID 5 added to Queue 1 at 731
Process with PID 6 added to Queue 1 at 731
Process with PID 8 is removed from Queue 1 at 731
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 731
Process with PID 4 is removed from Queue 1 at 731
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 731
Process with PID 5 is removed from Queue 1 at 731
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 731
Process with PID 6 is removed from Queue 1 at 731
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 731
Process with PID 4 added to Queue 1 at 732
Process with PID 5 added to Queue 1 at 732
Process with PID 6 added to Queue 1 at 732
Process with PID 7 added to Queue 1 at 732
Process with PID 8 added to Queue 1 at 732
Process with PID 4 is removed from Queue 1 at 732
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 732
Process with PID 5 is removed from Queue 1 at 732
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 732
Process with PID 6 is removed from Queue 1 at 732
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 732
Process with PID 7 is removed from Queue 1 at 732
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 732
Process with PID 8 is removed from Queue 1 at 732
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 732
Process with PID 4 added to Queue 1 at 733
Process with PID 5 added to Queue 1 at 733
Process with PID 6 added to Queue 1 at 733
Process with PID 7 added to Queue 1 at 733
Process with PID 4 is removed from Queue 1 at 733
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 733
Process with PID 5 is removed from Queue 1 at 733
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 733
Process with PID 6 is removed from Queue 1 at 733
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 733
Process with PID 4 added to Queue 1 at 734
Process with PID 5 added to Queue 1 at 734
Process with PID 8 added to Queue 1 at 734
Process with PID 7 is removed from Queue 1 at 734
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 734
Process with PID 4 is removed from Queue 1 at 734
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 734
Process with PID 5 is removed from Queue 1 at 734
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 734
Process with PID 4 added to Queue 1 at 735
Process with PID 6 added to Queue 1 at 735
Process with PID 7 added to Queue 1 at 735
Process with PID 8 is removed from Queue 1 at 735
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 735
Process with PID 5 added to Queue 1 at 736
Process with PID 4 is removed from Queue 1 at 736
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 736
Process with PID 6 is removed from Queue 1 at 736
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 736
Process with PID 7 is removed from Queue 1 at 736
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 736
Process with PID 5 is removed from Queue 1 at 736
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 736
Process with PID 4 added to Queue 1 at 737
Process with PID 6 added to Queue 1 at 737
Process with PID 7 added to Queue 1 at 737
Process with PID 8 added to Queue 1 at 737
Process with PID 4 is removed from Queue 1 at 737
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 737
Process with PID 6 is removed from Queue 1 at 737
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 737
Process with PID 7 is removed from Queue 1 at 737
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 737
Process with PID 8 is removed from Queue 1 at 737
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 737
Process with PID 4 added to Queue 1 at 738
Process with PID 5 added to Queue 1 at 738
Process with PID 6 added to Queue 1 at 738
Process with PID 7 added to Queue 1 at 738
Process with PID 4 is removed from Queue 1 at 738
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 738
Process with PID 5 is removed from Queue 1 at 738
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 738
Process with PID 6 is removed from Queue 1 at 738
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 738
Process with PID 7 is removed from Queue 1 at 738
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 738
Process with PID 4 added to Queue 1 at 739
Process with PID 5 added to Queue 1 at 739
Process with PID 6 added to Queue 1 at 739
Process with PID 7 added to Queue 1 at 739
Process with PID 8 added to Queue 1 at 739
Process with PID 4 is removed from Queue 1 at 739
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 739
Process with PID 5 is removed from Queue 1 at 739
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 739
Process with PID 6 is removed from Queue 1 at 739
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 739
Process with PID 7 is removed from Queue 1 at 739
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 739
Process with PID 8 is removed from Queue 1 at 739
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 739
Process with PID 4 added to Queue 1 at 740
Process with PID 5 added to Queue 1 at 740
Process with PID 6 added to Queue 1 at 740
Process with PID 7 added to Queue 1 at 740
Process with PID 4 is removed from Queue 1 at 740
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 740
Process with PID 5 is removed from Queue 1 at 740
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 740
Process with PID 6 is removed from Queue 1 at 740
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 740
Process with PID 7 is removed from Queue 1 at 740
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 740
Process with PID 4 added to Queue 1 at 741
Process with PID 5 added to Queue 1 at 741
Process with PID 6 added to Queue 1 at 741
Process with PID 8 added to Queue 1 at 741
Process with PID 4 is removed from Queue 1 at 741
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 741
Process with PID 5 is removed from Queue 1 at 741
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 741
Process with PID 6 is removed from Queue 1 at 741
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 741
Process with PID 8 is removed from Queue 1 at 741
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 741
Process with PID 4 added to Queue 1 at 742
Process with PID 5 added to Queue 1 at 742
Process with PID 6 added to Queue 1 at 742
Process with PID 7 added to Queue 1 at 742
Process with PID 8 added to Queue 1 at 742
Process with PID 4 is removed from Queue 1 at 742
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 742
Process with PID 5 is removed from Queue 1 at 742
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 742
Process with PID 6 is removed from Queue 1 at 742
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 742
Process with PID 7 is removed from Queue 1 at 742
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 742
Process with PID 4 added to Queue 1 at 743
Process with PID 5 added to Queue 1 at 743
Process with PID 6 added to Queue 1 at 743
Process with PID 8 is removed from Queue 1 at 743
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 743
Process with PID 4 is removed from Queue 1 at 743
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 743
Process with PID 5 is removed from Queue 1 at 743
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 743
Process with PID 6 is removed from Queue 1 at 743
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 743
Process with PID 4 added to Queue 1 at 744
Process with PID 5 added to Queue 1 at 744
Process with PID 6 added to Queue 1 at 744
Process with PID 7 added to Queue 1 at 744
Process with PID 8 added to Queue 1 at 744
Process with PID 4 is removed from Queue 1 at 744
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 744
Process with PID 5 is removed from Queue 1 at 744
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 744
Process with PID 6 is removed from Queue 1 at 744
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 744
Process with PID 7 is removed from Queue 1 at 744
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 744
Process with PID 8 is removed from Queue 1 at 744
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 744
Process with PID 4 added to Queue 1 at 745
Process with PID 5 added to Queue 1 at 745
Process with PID 6 added to Queue 1 at 745
Process with PID 7 added to Queue 1 at 745
Process with PID 4 is removed from Queue 1 at 745
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 745
Process with PID 5 is removed from Queue 1 at 745
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 745
Process with PID 6 is removed from Queue 1 at 745
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 745
Process with PID 7 is removed from Queue 1 at 745
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 745
Process with PID 4 added to Queue 1 at 746
Process with PID 5 added to Queue 1 at 746
Process with PID 6 added to Queue 1 at 746
Process with PID 8 added to Queue 1 at 746
Process with PID 4 is removed from Queue 1 at 746
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 746
Process with PID 5 is removed from Queue 1 at 746
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 746
Process with PID 6 is removed from Queue 1 at 746
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 746
Process with PID 8 is removed from Queue 1 at 746
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 746
Process with PID 4 added to Queue 1 at 747
Process with PID 5 added to Queue 1 at 747
Process with PID 6 added to Queue 1 at 747
Process with PID 7 added to Queue 1 at 747
Process with PID 8 added to Queue 1 at 747
Process with PID 4 is removed from Queue 1 at 747
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 747
Process with PID 5 is removed from Queue 1 at 747
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 747
Process with PID 6 is removed from Queue 1 at 747
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 747
Process with PID 7 is removed from Queue 1 at 747
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 747
Process with PID 8 is removed from Queue 1 at 747
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 747
Process with PID 4 added to Queue 1 at 748
Process with PID 5 added to Queue 1 at 748
Process with PID 6 added to Queue 1 at 748
Process with PID 7 added to Queue 1 at 748
Process with PID 4 is removed from Queue 1 at 748
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 748
Process with PID 5 is removed from Queue 1 at 748
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 748
Process with PID 6 is removed from Queue 1 at 748
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 748
Process with PID 4 added to Queue 1 at 749
Process with PID 5 added to Queue 1 at 749
Process with PID 8 added to Queue 1 at 749
Process with PID 7 is removed from Queue 1 at 749
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 749
Process with PID 4 is removed from Queue 1 at 749
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 749
Process with PID 5 is removed from Queue 1 at 749
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 749
Process with PID 8 is removed from Queue 1 at 749
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 749
Process with PID 4 added to Queue 1 at 750
Process with PID 5 added to Queue 1 at 750
Process with PID 6 added to Queue 1 at 750
Process with PID 7 added to Queue 1 at 750
Process with PID 8 added to Queue 1 at 750
Process with PID 4 is removed from Queue 1 at 750
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 750
Process with PID 5 is removed from Queue 1 at 750
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 750
Process with PID 6 is removed from Queue 1 at 750
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 750
Process with PID 7 is removed from Queue 1 at 750
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 750
Process with PID 8 is removed from Queue 1 at 750
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 750
Process with PID 4 added to Queue 1 at 751
Process with PID 5 added to Queue 1 at 751
Process with PID 6 added to Queue 1 at 751
Process with PID 7 added to Queue 1 at 751
Process with PID 4 is removed from Queue 1 at 751
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 751
Process with PID 5 is removed from Queue 1 at 751
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 751
Process with PID 6 is removed from Queue 1 at 751
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 751
Process with PID 7 is removed from Queue 1 at 751
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 751
Process with PID 4 added to Queue 1 at 752
Process with PID 5 added to Queue 1 at 752
Process with PID 6 added to Queue 1 at 752
Process with PID 8 added to Queue 1 at 752
Process with PID 4 is removed from Queue 1 at 752
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 752
Process with PID 5 is removed from Queue 1 at 752
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 752
Process with PID 6 is removed from Queue 1 at 752
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 752
Process with PID 8 is removed from Queue 1 at 752
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 752
Process with PID 4 added to Queue 1 at 753
Process with PID 5 added to Queue 1 at 753
Process with PID 6 added to Queue 1 at 753
Process with PID 7 added to Queue 1 at 753
Process with PID 8 added to Queue 1 at 753
Process with PID 4 is removed from Queue 1 at 753
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 753
Process with PID 5 is removed from Queue 1 at 753
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 753
Process with PID 6 is removed from Queue 1 at 753
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 753
Process with PID 7 is removed from Queue 1 at 753
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 753
Process with PID 8 is removed from Queue 1 at 753
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 753
Process with PID 4 added to Queue 1 at 754
Process with PID 5 added to Queue 1 at 754
Process with PID 6 added to Queue 1 at 754
Process with PID 7 added to Queue 1 at 754
Process with PID 4 is removed from Queue 1 at 754
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 754
Process with PID 5 is removed from Queue 1 at 754
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 754
Process with PID 6 is removed from Queue 1 at 754
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 754
Process with PID 7 is removed from Queue 1 at 754
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 754
Process with PID 4 added to Queue 1 at 755
Process with PID 5 added to Queue 1 at 755
Process with PID 6 added to Queue 1 at 755
Process with PID 8 added to Queue 1 at 755
Process with PID 4 is removed from Queue 1 at 755
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 755
Process with PID 5 is removed from Queue 1 at 755
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 755
Process with PID 6 is removed from Queue 1 at 755
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 755
Process with PID 8 is removed from Queue 1 at 755
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 755
Process with PID 4 added to Queue 1 at 756
Process with PID 5 added to Queue 1 at 756
Process with PID 6 added to Queue 1 at 756
Process with PID 7 added to Queue 1 at 756
Process with PID 4 is removed from Queue 1 at 756
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 756
Process with PID 5 is removed from Queue 1 at 756
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 756
Process with PID 6 is removed from Queue 1 at 756
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 756
Process with PID 7 is removed from Queue 1 at 756
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 756
Process with PID 4 added to Queue 1 at 757
Process with PID 5 added to Queue 1 at 757
Process with PID 6 added to Queue 1 at 757
Process with PID 7 added to Queue 1 at 757
Process with PID 8 added to Queue 1 at 757
Process with PID 4 is removed from Queue 1 at 757
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 757
Process with PID 5 is removed from Queue 1 at 757
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 757
Process with PID 6 is removed from Queue 1 at 757
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 757
Process with PID 7 is removed from Queue 1 at 757
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 757
Process with PID 4 added to Queue 1 at 758
Process with PID 5 added to Queue 1 at 758
Process with PID 6 added to Queue 1 at 758
Process with PID 8 is removed from Queue 1 at 758
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 758
Process with PID 4 is removed from Queue 1 at 758
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 758
Process with PID 5 is removed from Queue 1 at 758
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 758
Process with PID 6 is removed from Queue 1 at 758
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 758
Process with PID 4 added to Queue 1 at 759
Process with PID 5 added to Queue 1 at 759
Process with PID 6 added to Queue 1 at 759
Process with PID 7 added to Queue 1 at 759
Process with PID 8 added to Queue 1 at 759
Process with PID 4 is removed from Queue 1 at 759
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 759
Process with PID 5 is removed from Queue 1 at 759
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 759
Process with PID 6 is removed from Queue 1 at 759
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 759
Process with PID 4 added to Queue 1 at 760
Process with PID 5 added to Queue 1 at 760
Process with PID 7 is removed from Queue 1 at 760
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 760
Process with PID 8 is removed from Queue 1 at 760
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 760
Process with PID 4 is removed from Queue 1 at 760
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 760
Process with PID 5 is removed from Queue 1 at 760
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 760
Process with PID 4 added to Queue 1 at 761
Process with PID 6 added to Queue 1 at 761
Process with PID 7 added to Queue 1 at 761
Process with PID 8 added to Queue 1 at 761
Process with PID 4 is removed from Queue 1 at 761
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 761
Process with PID 6 is removed from Queue 1 at 761
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 761
Process with PID 7 is removed from Queue 1 at 761
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 761
Process with PID 8 is removed from Queue 1 at 761
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 761
Process with PID 4 added to Queue 1 at 762
Process with PID 5 added to Queue 1 at 762
Process with PID 6 added to Queue 1 at 762
Process with PID 7 added to Queue 1 at 762
Process with PID 8 added to Queue 1 at 762
Process with PID 4 is removed from Queue 1 at 762
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 762
Process with PID 5 is removed from Queue 1 at 762
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 762
Process with PID 6 is removed from Queue 1 at 762
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 762
Process with PID 7 is removed from Queue 1 at 762
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 762
Process with PID 8 is removed from Queue 1 at 762
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 762
Process with PID 4 added to Queue 1 at 763
Process with PID 5 added to Queue 1 at 763
Process with PID 6 added to Queue 1 at 763
Process with PID 7 added to Queue 1 at 763
Process with PID 4 is removed from Queue 1 at 763
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 763
Process with PID 5 is removed from Queue 1 at 763
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 763
Process with PID 6 is removed from Queue 1 at 763
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 763
Process with PID 7 is removed from Queue 1 at 763
Scheduling tester_mlfq with PID 7 from Queue 1 with current tick 1 at tick 763
Process with PID 4 added to Queue 1 at 764
Process with PID 5 added to Queue 1 at 764
Process with PID 6 added to Queue 1 at 764
Process with PID 8 added to Queue 1 at 764
Process with PID 4 is removed from Queue 1 at 764
Scheduling tester_mlfq with PID 4 from Queue 1 with current tick 1 at tick 764
Process with PID 5 is removed from Queue 1 at 764
Scheduling tester_mlfq with PID 5 from Queue 1 with current tick 1 at tick 764
Process with PID 6 is removed from Queue 1 at 764
Scheduling tester_mlfq with PID 6 from Queue 1 with current tick 1 at tick 764
Process with PID 8 is removed from Queue 1 at 764
Scheduling tester_mlfq with PID 8 from Queue 1 with current tick 1 at tick 764
Process with PID 4 added to Queue 1 at 765
Process with PID 5 added to Queue 1 at 765
Process with PID 6 added to Queue 1 at 765