What is Difference between thread and process?
Answer Posted / ankit tripathi
Technically, a thread is defined as an independent stream
of instructions that can be scheduled to run as such by the
operating system.
So, in summary, in the UNIX environment a thread:
o Exists within a process and uses the process
resources
o Has its own independent flow of control as long as
its parent process exists and the OS supports it
o Duplicates only the essential resources it needs to
be independently schedulable
o May share the process resources with other threads
that act equally independently (and dependently)
o Dies if the parent process dies - or something
similar
o Is "lightweight" because most of the overhead has
already been accomplished through the creation of its
process.
Whereas in case of process, every process has its own
memory management, two process cannot communicate without
using IPCS or Sockets, they do not share resources and
every process has its own process ID(pid).
| Is This Answer Correct ? | 65 Yes | 40 No |
Post New Answer View All Answers
Why is 64 bit called x86?
Explain the resident set and working set of a process?
What is the use of chkdsk f?
Why is a single serial port managed with a single interrupt-driven i/o but a front-end processor is managed using a polling i/o, such as a terminal concentrator?
Explain some memory components.
Is 32 bit obsolete?
What is drawback of mvt?
Name the different types of memory?
Why paging is used in os?
What advantage is there in having different time-quantum sizes on different levels of a multilevel queuing system?
What is a sector?
Explain Marshalling?
What is the purpose of system programs?
Command Kill any user’s all processes.
Explain 32 bit application/OS vs 64 application/OS?