-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
119 lines (106 loc) · 3.47 KB
/
index.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
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
<!DOCTYPE html>
<html>
<head>
<title>CWRU EECS 338</title>
<link href="base-style.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="nav.js"></script>
</head>
<body onLoad="nav('nav')">
<center>
<div class="content">
<div>
<h1>CWRU EECS 338: <br>Introduction to Operating Systems and Concurrent Programming</h1>
<h2>Spring 2017</h2>
<h2>Instructor: gultekin ozsoyoglu (tekin@case)</h2>
</div>
<div>
<table cellspacing="20px">
<COLGROUP width="20%"/>
<COLGROUP width="80%"/>
<tr>
<td id="nav" valign="top"></td>
<td valign="top">
<h3>Class Times</h3>
<ul>
<li>Lectures: Monday/Wednesday/Friday: 2:15-3:05pm, @ Bingham 103</li>
<li>Recitation: Tuesday: 6-7pm @ White 411</li>
</ul>
<h3>Help</h3>
<ul>
<li>Tekin's office hours: 10:30-11:30am Monday and Friday @ Olin 506</li>
<li>Yiqian Chen's office hours: TBA</li>
<li>Will Hollingsworth's office hours: TBA</li>
<li>TA3's office hours: TBA</li>
<li>TA4's office hours: TBA</li>
<li>email: please start the subject line with <span style="font-family: monospace;">eecs338</span></li>
</ul>
<h3>Teaching Assistants</h3>
<ul>
<li>Yiqian Chen (yxc602@case)</li>
<li>Will Hollingsworth (whh34@case)</li>
<li>TA3 TBA</li>
<li>TA4 TBA</li>
</ul>
<!--
<h3>Recitation 7: ??</h3>
<p>2015-03-03</p>
<p>
</p>
-->
<!--
<h3>Recitation 6: Monitors</h3>
<p>2015-02-24</p>
<p>
</p>
-->
<!--
<h3>Recitation 5: Mutexes, Binary, and Non-binary Semaphores</h3>
<p>2015-02-17</p>
<p>
</p>
-->
<!--
<h3>Recitation 4: Named and Unnamed Pipes</h3>
<p>2015-02-10</p>
<p>
</p>
-->
<!--
<h3>Recitation 3: Source Code, Makefiles, and System calls: fork and exec</h3>
<p>2015-02-03</p>
<p>
</p>
-->
<!--
<h3>Recitation 2: Basic knowledge about C and linux</h3>
<p>2015-01-27</p>
<p>
</p>
-->
<!--
<h3>Recitation 1: Introduction to EECS 338 and how to be successful in the course</h3>
<p>2015-01-20</p>
<p>
</p>
-->
<!--
<h3>Recitation Examples</h3>
<p>
Examples from recitations will be uploaded to <a href=https://github.com/cwru-eecs338/cwru-eecs338.github.com/tree/master/relevant%20materials>GitHub</a>. Additional lecture notes, when made available, will be found on this page.
</p>
<h3>Summary</h3>
<p>
This site will be updated with materials for the course during the
semester.
Currently, any code will be hosted at <a
href="https://github.com/cwru-eecs338">GitHub</a>
for easy access. </p>
-->
</td>
</tr>
</table>
</div>
</div>
</center>
</body>
</html>