Threads and Processes
Published by Kaustubh Saha on December 15th, 2018
What is a thread ?
A thread is a kernel abstraction for scheduling work on the CPU. A thread is essentially an execution context which a CPU needs to execute a bunch of instructions. As a bare minimum coding construct, any thread implementation will ha...