Notes on “Threads”

Threads The thread defines a sequential execution stream within a process. Processes The process defines the address space and general process attributes (everything but threads of execution) Kernel-level thread OS-managed threads are called kernel-level threads or lightweight processes. Thread operations still require system calls Kernel-level threads have to be general to support the needs of …