This Blog provide simple notes in simple language of computer science and engineering.

Wednesday 13 February 2019

Process and a Thread.

No comments
A process is a program in execution. A program by itself is not a process. Program is a
passive entity whereas process is an active entity.
A thread is a lightweight process which is a basic unit of CPU utilization.
Differences between process and thread.
1. Threads share the address space of the process that created it; whereas each process
has its own address space (separate).

No comments :

Post a Comment