Link to home
Start Free TrialLog in
Avatar of pras_15
pras_15

asked on

difference b/w process and a thread

what is difference b/w process and a thread?
ASKER CERTIFIED SOLUTION
Avatar of semuel
semuel

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of rainmal
rainmal

Well Semuel ,

you forgit one thing that the Task Switching between Processes is costlier than that between threads.

The Operating system resources don't get exhausted easily when you are using threads.

While for proceses they have to be allocated some memory , etc Also the OS specifies the Number of Max current Active Processes called the working set .

Theoretically a Process can CONTAIN ANY number of threads inside it.