Operating System (OS) Question: Download Operating System (OS) PDF

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

Tweet Share WhatsApp

Answer:

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.

Download Operating System (OS) PDF Read All 74 Operating System (OS) Questions
Previous QuestionNext Question
While running DOS on a PC, which command would be used to duplicate the entire diskette?What is the virtual memory?