From: Ben Pfaff Date: Tue, 20 Dec 2005 23:45:09 +0000 (+0000) Subject: Clarify that multithreaded processes not supported. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pintos-anon;a=commitdiff_plain;h=fd90655221929afe8eaf818a96c29d25c726a596 Clarify that multithreaded processes not supported. --- diff --git a/doc/userprog.texi b/doc/userprog.texi index 7c835b6..ea639c1 100644 --- a/doc/userprog.texi +++ b/doc/userprog.texi @@ -36,11 +36,12 @@ full access to privileged parts of the system. Once we start running user programs on top of the operating system, this is no longer true. This project deals with consequences of the change. -We allow more than one user program to run at a time. User -programs are written and compiled to work under the illusion that they -have the entire machine. This means that when you load and -run multiple processes at a time, you must manage memory, scheduling, -and other state correctly to maintain this illusion. +We allow more than one process to run at a time. Each process has one +thread (multithreaded processes are not supported). User programs are +written under the illusion that they have the entire machine. This +means that when you load and run multiple processes at a time, you must +manage memory, scheduling, and other state correctly to maintain this +illusion. In the previous project, we compiled our test code directly into your kernel, so we had to require certain specific function interfaces within