-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathindex.html
More file actions
135 lines (118 loc) · 6.37 KB
/
Copy pathindex.html
File metadata and controls
135 lines (118 loc) · 6.37 KB
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
<!DOCTYPE html>
<html lang="en"
xmlns:og="http://ogp.me/ns#"
xmlns:fb="https://www.facebook.com/2008/fbml">
<head>
<title>Angold-4 Organization</title>
<!-- Using the latest rendering mode for IE -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="../../../images/favicon.png" rel="icon">
<link rel="canonical" href=".">
<meta name="author" content="Angold Wang" />
<meta property="og:site_name" content="Angold-4" />
<!-- <meta property="og:type" content="article"/> -->
<meta property="og:title" content="Angold-4 Organization"/>
<meta property="og:url" content="."/>
<!-- Bootstrap -->
<link rel="stylesheet" href="../../../theme/css/bootstrap.flatly.min.css" type="text/css"/>
<link href="../../../theme/css/font-awesome.min.css" rel="stylesheet">
<!-- <link href="https://cdnjs.cloudflare.com/ajax/libs/typicons/2.0.9/typicons.min.css" rel="stylesheet"> -->
<link href="../../../theme/css/pygments/monokai.css" rel="stylesheet">
<link rel="stylesheet" href="../../../theme/css/style.css" type="text/css"/>
</head>
<body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<!-- <script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script> -->
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="http://angold4.org" class="navbar-brand">
<img src="../../../images/logo.png" width="32"/> Angold4 </a>
</div>
<div class="collapse navbar-collapse navbar-ex1-collapse">
<ul class="nav navbar-nav">
<li><a href="../../../about.html">About</a>
<li><a href="../../../blogs.html">Blogs</a>
<li><a href="../../../projects.html">Projects</a>
</ul>
<ul class="nav navbar-nav navbar-right">
<li> <a title="Youtube" href="https://www.youtube.com/channel/UC3ZAjh2LHhm-FrgxgBtgMzQ" target="_new"><i class="fa fa-youtube"></i> Youtube</a>
</li>
</div>
<!-- /.navbar-collapse -->
</div>
</div> <!-- /.navbar -->
<div class="container">
<div class="row">
<div class="col-lg-12">
<section id="content" class="body">
<h1>"Operating System Design and Implementation" Notes</h1>
<ul>
<li><strong>Notes since Aug 27, 2020</strong></li>
<li><strong>Still on progress</strong></li>
<li><strong>I don't have copyright</strong></li>
<li><strong><a href="https://github.com/Angold-4/OSDI/raw/master/Operating%20Systems%20Design%20and%20Implementation%2C%203rd%20Edition.pdf">Pdf Book download</a></strong> Just for learning</li>
</ul>
<h1>Contents</h1>
<h2>1. Introduction</h2>
<ul>
<li><strong>1. <a href="Chapter/Chapter1/1OS.html">Introduction to Operating Systerm</a></strong></li>
<li><strong>2. <a href="Chapter/Chapter1/2HSE.html">The History of Oprating Systerm(Early)</a></strong></li>
<li><strong>3. <a href="Chapter/Chapter1/3MINIX.html">Minix</a></strong></li>
<li><strong>4. <a href="Chapter/Chapter1/4MCOS.html">The Fourth Generation (1980–Present) Personal Computers</a></strong></li>
<li><strong>5. <a href="Chapter/Chapter1/5Syscall-1.html">System Calls (1)</a></strong></li>
<li><strong>6. <a href="Chapter/Chapter1/6Syscall-2.html">System Calls (2)</a></strong></li>
<li><strong>7. <a href="Chapter/Chapter1/7Syscall-3.html">System Calls (3)</a></strong></li>
<li><strong>8. <a href="Chapter/Chapter1/8OStruc.html">Operating System Structure</a></strong></li>
<li><strong>9. <a href="Chapter/Chapter1/9Exercises.html">Problems for Chapter 1</a></strong></li>
<li><strong>Topic: <a href="Chapter/Chapter1/SROPAttack.html">Sigreturn Oriented Programming Attack</a></strong></li>
</ul>
<h2>2. Processes</h2>
<ul>
<li><strong>1. <a href="Chapter/Chapter2/1Introprogress.html">Introduction to Processes</a></strong></li>
<li><strong>2. <a href="Chapter/Chapter2/2Communication.html">Interprocess Communication</a></strong></li>
<li><strong>3. <a href="Chapter/Chapter2/3Semaphore.html">Semaphore and IPC Problems</a></strong></li>
<li><strong>4. <a href="Chapter/Chapter2/4ClockTick.html">Inside a Hole Clock Tick</a></strong></li>
<li><strong>5. <a href="Chapter/Chapter2/5Scheduler.html">Process Scheduler</a></strong></li>
<li><strong>6. <a href="Chapter/Chapter2/6Interrupt.html">Interrupt</a></strong></li>
<li><strong>7. <a href="Chapter/Chapter2/7Systask.html">System Task</a></strong></li>
<li><strong>8. <a href="Chapter/Chapter2/8Problems.html">Problems for Chapter 2</a></strong></li>
<li><strong>Topic: <a href="Chapter/Chapter2/Interruptii.html">Interrupt implementation in Minix3</a></strong></li>
</ul>
</section>
</div>
</div>
</div>
<footer>
<div class="well well-lg" id="footer-well">
<div class="container">
<div class="row">
<div class="col-xs-6">
<a href="https://angold4.org" title="Angold-4 Organization" class="image-link"><img src="../../../images/logo.png" class="cmudb-logo" /></a>
</div>
<div class="col-xs-6">
<p class="pull-right"><i class="fa fa-arrow-up"></i> <a href="#">Back to top</a></p>
</div>
</div>
</div>
</div>
</footer>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="../../../theme/js/bootstrap.min.js"></script>
<!-- Enable responsive features in IE8 with Respond.js (https://github.com/scottjehl/Respond) -->
<script src="../../../theme/js/respond.min.js"></script>
<!-- Fix scrolling issues to internal HREFs that get positioned behind navbar -->
<!-- http://stackoverflow.com/questions/10732690/offsetting-an-html-anchor-to-adjust-for-fixed-header -->
<script src="../../../theme/js/href_scroll.js"></script>
<!-- You know what this is and you know what he did to me... -->
<script src="../../../theme/js/tim-kraska-betrayed-me.js"></script>
</body>
</html>