What is the use of thread over process?

Answer Posted / sandeep patra

Thread is an executable entity but it is bound to its parent
process.
now there are two types of threads.
1. user space threads and
2. kernel thread
now the kernel threads are actually known as light weight
processes.

why light weight????
>>>> as it's context switching times is lesser than all
other process.

now why the context switching time is less????
>>>>> as process have there own process address space and
maintains many more things like userID, ProcessID, groupID,
number of files opened, reisters and blah, blah
whereas thread shares it's parent process's address space
and mainly contains three things like own stack, registers
and thread related data.
so more things to swap need more time that's why thread's
context switching time is less compared to that of a process.

now the answer,
use of thread: thread are used to provide multi-programming
environment.
ok, now u ppl would think that, it can also be done creating
new processes (using fork())
yes we can,
but as i told earlier that the context switch time for
threads are very less.
moreover the inter-thread communication is more easier than
inter-process communication as all threads of a single
process uses the same address space.

Is This Answer Correct ?    61 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between process and thread in linux?

418


Can a process have 0 threads?

440


What is context switching between threads?

444


What does 4 cores 8 threads mean?

389


What do cores and threads do?

434






Why do we use thread in sleep?

422


Explain each system calls used for process management in linux.

425


Do threads share variables?

453


Can threading stop hair growth?

485


Which one is better thread class or runnable interface?

418


What are processes and threads?

427


What are linux kernel threads?

427


Are more threads better?

423


Does linux have threads?

419


Why do we use threads?

447