-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresult.csv
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
4925 lines (4372 loc) · 94.3 KB
/
result.csv
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
keyword word_score
os control
52
13
powerpc 32-bit memory management
formats
powerpc 32-bit address translation
53
54
required reading
• stallings chapter 8
• stallings 128.887493471
graphics frame buffers
• 32 bit effective address
– 12 bit byte selector
• =4kbyte pages
– 16 bit page id
• 64k pages 126.499159664
william stallings
chapter 2
operating system overview
operating system overview
dave bremer
otago polytechnic 116.778992937
operating systems
• stages include
• stages include
– serial processing
– simple batch systems
– multiprogrammed batch systems
– time sharing systems
serial processing
• 105.040590452
paging
• unsegmented unpaged
– virtual address = physical address
– low complexity
– high performance
• unsegmented paged
– memory viewed 98.2307840827
time slot
21
22
process control block
pcb diagram
identifier
•
• state
• priority
• program counter
• memory pointers
• context data
•
• accounting information 97.707891437
– microkernel architecture
– multithreading
– multithreading
– symmetric multiprocessing
– distributed operating systems
– object-oriented design
microkernel architecture
• 87.3069789859
modern operating
systems
– microsoft windows overview
– unix systems
– linux
major advances
• operating systems 79.840232234
modern operating
systems
– microsoft windows overview
– unix systems
– linux
single-user
multitasking
• 73.202020755
modern operating
systems
– microsoft windows overview
– unix systems
– linux
modular
monolithic kernel
• 72.674476404
modern operating
systems
– microsoft windows overview
– unix systems
– linux
operating system
• 68.9236409821
– improper synchronization
– improper synchronization
– failed mutual exclusion
– non-determinate program operation
– deadlocks
components 65.9048391368
modern operating
systems
– microsoft windows overview
– unix systems
– linux
description 65.8490795786
– dynamic linking
– stackable modules
linux kernel modules
linux kernel
components
objectives 63.4257936508
• segmented paged
access control
47
48
12
pentium ii segmentation
pentium ii protection
• 62.5626633518
modern operating
systems
– microsoft windows overview
– unix systems
– linux
evolution 61.7157462452
modern
operating systems
– microsoft windows overview
– unix systems
– linux 59.8490795786
paging
45
46
pentium ii
pentium ii address translation
mechanism
• hardware 55.0840646497
computer application
ch-2 operating system overview
operating system
• data integrity 52.1448638513
response time
20 %
33 %
33 %
33 %
30 min
6 jobs/hr
18 min
40 %
67 %
67 %
67 %
15 min
12 jobs/hr
10 min
table 51.8260611261
access control
– long-term storage
virtual memory
• file system implements long-term store
• virtual memory 51.705709785
issue
19
20
5
short term scheduler
process states
• dispatcher
• fine grained decisions 51.1308484092
computer application
ch-2 operating system overview
operating system
needed block 49.7655823141
paging
– berkeley unix
• segmented unpaged
– paging manages allocation 48.9752647715
computer resources
william stallings
computer organization
operating system support 48.4658559019
– scheduling
– setup time
simple batch systems
• resident monitor program
• users submit jobs 48.4529693989
computer application
ch-2 operating system overview
operating system
os typically 47.7058024296
level 0
49
50
pentium ii paging
powerpc memory management hardware
• segmentation 47.6986999588
computer application
ch-2 operating system overview
operating system
type 46.4623241688
computer application
ch-2 operating system overview
operating system
program 45.9944526828
computer application
ch-2 operating system overview
operating system
functions 45.6170860735
computer application
ch-2 operating system overview
operating system
figure 2 45.1156575021
computer application
ch-2 operating system overview
operating system 43.7956575021
computer application
ch-2 operating system overview
operating system
3 43.7956575021
computer application
ch-2 operating system overview
operating system
2 43.7956575021
page directory
• 1024 entries max
• splits 4g linear memory 43.2938640974
segment
• unsegmented virtual memory 232 = 4gbytes
• segmented 246=64 terabytes
– 42.1208949097
manageable subproblems
os design hierarchy
roadmap
– operating system objectives/functions
– 40.1239920453
virtual
memory
39
40
10
page table structure
translation lookaside buffer
• 36.5506906042
disrupting
system integrity
roadmap
– operating system objectives/functions
– 35.7055137845
virtual memory
windows architecture
client/server model
• windows os 35.6080961143
tlb holding 32 page table entries
51
• 32 bit – paging 35.5774173965
data
9
10
desirable hardware features
multi-programmed batch systems
• memory protection
– 32.038941439
main memory
virtual memory
virtual memory
addressing
information protection 31.863751464
physical
memory access
– fetch page table entry
– fetch data
• 31.6638627065
computer system
operating system services
• program creation
• program execution
• access 31.5182665988
smp advantages
• performance
– allowing parallel processing
• availability
– failure 31.2656862745
line-at-a-time scroll mode terminals affects os design 31.1476449275
variable sized partitions
29
30
fixed
partitioning
variable sized partitions 29.8455128205
prentice hall
roadmap
– operating system objectives/functions
– 29.7888471178
operating systems
– major achievements
– developments leading 29.5982955125
5 principal storage
management responsibilities
– process isolation
– automatic allocation 29.5492550026
application
• accounting
– collect usage statistics
– monitor performance 28.8004481793
block address translation
– map 4 large blocks 28.7842105263
batch multiprogramming versus time sharing
6
operating systems 28.6645937435
rpc
windows objects
• windows draws heavily 28.5707070707
– scheduling
– setup time
simple batch system
• early computers 28.3372395841
time
• solutions
– good page replacement algorithms
– reduce number 28.0601269119
base register – limit register address binding base register 27 27.5916083916
multi-programming
• long term
• medium term
• short term
• 27.3357142857
page table
– tlb
41
42
tlb operation
tlb 27.2567187714
paged linear address space
– protection 26.2148148148
unix
traditional unix kernel
system 26.1527777778
17
18
long term scheduling
medium term scheduling
• determines 25.9778911565
services
– fixes
roadmap
– operating system objectives/functions
– 25.3483709273
process scheduling
25
26
memory management
• uni-program
– memory split 25.3115838068
– availability
– confidentiality
– data integrity
– authenticity
scheduling 24.9512471655
job
time sharing
minimize response time
commands entered 24.9348302848
small chunks -page
frames
• split programs 24.8855072464
single byte level
– translation table needed 24.0645412652
rtos solution demonstrates unique performance characteristics 23.1918767507
30 modern general purpose operating systems permit 22.9337435257
instance
roadmap
– operating system objectives/functions
– 22.3602756892
external hardware errors
– software errors
– operating system 22.1500708403
operating system
batch multi-programming
maximize processor’ 22.0563074353
operating system
interactive
•
• batch
• single program 21.51916855
operating system
batch multiprogramming
maximize processor 21.0896407686
modern operating
– developments leading 20.7976462896
roadmap
– operating system objectives/functions
– 20.7888471178
multi-access systems
• system access
– controls access 20.5465670374
unique interface
– os presents standard interface 20.4101449275
job
• monitor handles scheduling
6
8
2
memory layout 19.8325894057
pentium iv extended instruction set 19.4758241758
operating
systems
• operating systems 19.4234817814
multiple
users
users
• multiple users simultaneously access 19.406621137
accidentally reading job control
instructions 19.2739393939
– single secondary memory space
• early stage 19.2699425287
simple segmentation
– 64 bit paging 19.1618357488
smallest legal physical memory address 18.9732758621
job1
heavy compute
5 min
50 mb 18.967032967
paging
virtual memory
• demand paging
– 18.9093007068
contiguous memory allocation types virtual memory 18.8851964128
operator
• operator batches jobs
• monitor controls sequence 18.820530303
architecture
6th edition
week 10 18.7142857143
time-sharing operating systems switch tasks based 18.695074224
30 simple batch systems early computers 18.6607952434
kernel
– address spaces
– interprocess communication 18.5666666667
programs
utilization
15
16
4
time sharing systems
scheduling
• 18.4005962758
utilization histograms
time sharing systems
• 18.313048213
called real memory
• user/programmer sees 18.1982758621
cpu
• operating system relinquishes control 17.996130031
exploit modern
32-bit 17.9492753623
– basic scheduling
multithreading
• process 17.8400320827
– fairness
– differential responsiveness
– efficiency
key elements 17.7979691877
multiprocessing
distributed
operating systems
• 17.7117408907
2003
operating system overview 17.7109250399
multiprogrammed
batch systems
• cpu 17.5143036702
simple batch operating
system 17.3199720315
architecture optimizes input/output performance 17.1966386555
define logical memory partitions subject 17.1633568337
memory fragmentation page description table 30 17.0223023258
operating system
system structure
• view 16.8443749233
microsoft windows 2000 / 7 / 8 16.8328613235
assign 200/10 = 20ms cpu time 16.6688659247
monitor improves job setup time 16.6188557389
resident monitor
job control language
instructions 16.5174314574
principal storage management responsibilities 16.4321428571
process
• operating system maintains list 16.2569971143
developed
• major advances include 16.1272378517
algorithm – deadlock avoidance deadlock prevention 25 16.125
• operating system relinquishes control 16.0745614035
operating system
• program development
– editors 16.0277425491
monitor
job control language
• special type 16.0183838384
equal sized small
chunks 16.0
fall 2003
jinzhong niu september 15 16.0
maximize processor utilization
• monitor
• monitor
– software 15.9238528139
operating system
• programs interact directly 15.8934019832
system
• incremental growth
– additional processors 15.75
1000 microsecond process hierarchy context switching 16 15.7061285213
called pages
• virtual address 15.7035714286
modern
– developments leading 15.6397515528
3 multiprogrammed batch systems 15.5927350427
multiprogramming operating systems impose 15.545074224
scheduling means extra cpu time 15.5209067411
• failed mutual exclusion 15.5
modern operating
systems 15.4943495863
modern operating systems 15.4943495863
developed batch operating systems 15.3484558665
virtual memory involves separation 15.1208949097
operating system
• machines run 14.9692982456
base address
• split memory 14.9232758621
time sharing
maximize response time 14.8742242242
modern operating system 14.8571700992
desirable hardware
features
• memory protection 14.8470000471
required
• page fault
– required page 14.818369453
• major advances include 14.7794117647
microsoft windows 14.702020202
large mainframe computer systems 14.6878267364
memory
• operating system spends 14.5645039322
local address spaces
– protection 14.5481481481
users
services cont…
• controlled access 14.5291277153
32-bit offset
• 2 bits 14.5
multitasking operating systems multitasking 14.4176232436
run concurrently
• thread
– dispatchable unit 14.3947368421
resources
services cont…
• error detection 14.370952381
file system implements 14.3541666667
– increase main memory
• expensive
• leads 14.3066091954
case linear address space 14.2974358974
run multiple
programs
• main drivers 14.28175924
cache operation
43
44
11
segmentation
advantages 14.2179487179
multi-programmed batch system 14.2055555556
numerous tasks
– os handles scheduling 14.1788524105
hole
31
32
8
variable sized partitions 14.1102564103
disrupting
operating system 14.0745614035
operation
• user mode
– user program executes 14.0507085451
files
• system access
• error detection 13.8424600658
attributes remain essentially unchanged 13.8333333333
load-time address binding schemes 13.8
computer system development created problems 13.798170469
termed serial processing 13.7761904762
real-time transaction
processing systems 13.6871794872
identify physical storage sites 13.6071428571
job control language commands
provided 13.6050505051
partitions
– unix system 13.5560897436
recent history
37
38
thrashing
bonus
• 13.5
diagnose
• errors typically include 13.4692307692
scheduling algorithms scheduling algorithms 13.4540816327
– processes
– memory management
– information protection 13.4417123008
batch operating system 13.3634502924
batch operating system 13.3634502924
large operating systems 13.3117408907
threads
symmetric
multiprocessing 13.2857142857
major theoretical advances 13.2794117647
handle multiple
interactive jobs
• processor’ 13.21003996
executed
• kernel mode
– monitor executes 13.2084356725
5
7
early systems
• late 1940s 13.2038461538
stages 13.0
collect usage statistics 13.0
process
process management
memory management
• 12.9492583948
require contiguous page frames
• 12.9150326797
resource management
– system
process
• fundamental 12.9002928537
memory management hardware detects 12.8095661846
degrading pure cpu performance 12.8039215686
simple batch systems 12.7992567819
2 simple batch systems 12.7992567819
data loaded
– clock generates interrupts 12.7908730159
handle multiple batch jobs 12.7791486291
dynamic partitioning
33
34
relocation
paging
• 12.7727743271
interthread communication facilities include 12.7555555556
4kbyte pages
• 12.7142857143
simpler
operating systems 12.7117408907
mainframe operating systems 12.7117408907
contemporary operating systems 12.7117408907
partitioning
• long term queue 12.6785714286
hardware technologies devel-
opment 12.6612903226