0
15kviews
what is the difference between user level thread and kernel level threads? under what circumstances one better than another ?

Subject: Operating System

Topic: PROCESS MANAGEMENT

Difficulty: Medium

1 Answer
0
683views

A thread is a flow of execution through the process code, with its own program counter that keeps track of which instruction to execute next, system registers which hold its current working variables, and a stack which contains the execution history.

A thread is also called a lightweight process. Threads …

Create a free account to keep reading this post.

and 4 others joined a min ago.

Please log in to add an answer.