top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What resources are used when a thread created? How do they differ from those when a process is created?

–1 vote
1,378 views
What resources are used when a thread created? How do they differ from those when a process is created?
posted Sep 9, 2013 by Vinay Shukla

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

When a thread is created the threads does not require any new resources to execute the thread shares the resources like memory of the process to which they belong to. The benefit of code sharing is that it allows an application to have several different threads of activity all within the same address space. Whereas if a new process creation is very heavyweight because it always requires new address space to be created and even if they share the memory then the inter process communication is expensive when compared to the communication between the threads.

answer Sep 9, 2013 by Arvind Singh
...