-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoperatingSystem.html
44 lines (37 loc) · 1.56 KB
/
operatingSystem.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Operating System </title>
</head>
<body>
<h2> UNIX Command </h2>
<a href="unixCommands.html"> <div> Command Line Arguments </div></a>
<h2> Fork </h2>
<div class="processFork">
<a href="parentChildProcesses.html"> Parent Child in a Process & lifespan </a>
<a href="forkProcesses.html"> Forks in a program </a>
<a href="orphanProcess.html"> Orphan Process </a>
<a href="zombieProcess.html"> Zombie Process</a>
<a href="executingFile.html"> Executing File </a>
<a href="processCompletionStatus.html"> Process Completion Status </a>
</div>
<h2> CPU Scheduling </h2>
<div class="cpuScheduling">
<a href="CPU_Scheduling\FCFS.html"> First Come First Server </a>
<a href="CPU_Scheduling\SJF.html"> Shortest Job First </a>
<a href="CPU_Scheduling\PS.html"> Priority Scheduling </a>
<a href="CPU_Scheduling\RR.html"> Round Robin </a>
<a href="CPU_Scheduling\MQS.html"> Multi Queue Scheduling </a>
<a href="CPU_Scheduling\MFQS.html"> Multilevel Feedback Queue Scheduling </a>
</div>
<h2> Consumer Producer </h2>
<div class="consumerProducer">
<a href="CPprocessors.html"> With Processors </a>
<a href="CPthreads.html"> With Threads </a>
<a href="CPpetersonAlgorithm.html"> With Peterson's Algorithm </a>
<a href="CPsemaphore.html"> With Semaphores </a>
</div>
</body>
</html>