March 2003
Intermediate to advanced
912 pages
27h 17m
English
As with UNIX, a process can be considered to be a running instance of an executable program. It has a private address space containing its code and data. As it executes, the operating system can allocate it system resources such as semaphores and communications ports. A process must have at least one thread since a thread is the unit of scheduling by the kernel.
A process executing in user mode invokes operating system services by making system calls. Via the familiar trap mechanism (Section 3.3) its mode is changed to system (privileged) as it enters and executes the operating system and is returned to user mode on its return.
Processes are also represented as objects, so are manipulated ...