summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--proj0.txt11
1 files changed, 6 insertions, 5 deletions
diff --git a/proj0.txt b/proj0.txt
index 22939fc..b54ee91 100644
--- a/proj0.txt
+++ b/proj0.txt
@@ -21,7 +21,8 @@ Manuel Mausz <manuel-uni@mausz.at>
21>> preparing your submission, other than the Pintos documentation, course 21>> preparing your submission, other than the Pintos documentation, course
22>> text, lecture notes, and course staff. 22>> text, lecture notes, and course staff.
23 23
24TODO 24Stallings, W. - Operating Systems
25
25 ALARM CLOCK 26 ALARM CLOCK
26 =========== 27 ===========
27 28
@@ -130,10 +131,10 @@ strtok() uses global data, so it is unsafe in threaded programs such as kernels.
130 execution with user privileges. Otherwise this could lead to a kernel oops 131 execution with user privileges. Otherwise this could lead to a kernel oops
131 or even worse code execution within the kernel. 132 or even worse code execution within the kernel.
132 133
133Outsourcing command separation from the kernel leads to a leaner 134* Outsourcing command separation from the kernel leads to a leaner
134less complex kernel implementation and reduces the kernel workload 135 less complex kernel implementation and reduces the kernel workload
135because tasks like searching for a command name in file system 136 because tasks like searching for a command name in file system
136can be delegated to the shell. 137 can be delegated to the shell.
137 138
138 139
139 SURVEY QUESTIONS 140 SURVEY QUESTIONS