In operating system:
What process resources are associated with each thread that it does not share with other threads?
Answer: stack and registers associated with the thread of apocess cannot be shared with other threads
In Operating Systems, a process will be divided in to multiple threads and executed parallely. This is called MultiThreading. Resource sharing is a concept in MultiThreading where the resources allocated to a process are hsred between the threads. However only resources like code, data and files are only shared between the threads whereas stack and registers of a thread are not shared.
Get Answers For Free
Most questions answered within 1 hours.