2 2 votes Given that a computer system has only 3 process.1st process is single threaded, 2nd process is two threaded and 3rd process is 4 threaded.So total how many number of page tables will be managed by the operating system? Operating System operating-system paging iisc threads + – Sourajit25 995 views answer comment Share Follow Print 0 reply Please log in or register to add a comment.
Best answer 8 8 votes All threads of a process share the same page table. The point of having threads is to be able to have multiple tasks operating on the same memory. Threads are supposed to be fast, so there would be a lot of overhead if the entire page table had to be copied whenever a thread was created. We also want context switching to be fast, so we want to avoid having to switch between page tables when a different thread starts to execute So it doesn't matter how many threads a process has, there will be only one page table. Thus, Ans: 3 Page tables. Ref: http://web.cs.ucla.edu/classes/winter12/cs111/scribe/15e/ Anuj Mishra answered Jun 4, 2019 • selected Jun 5, 2019 by Sourajit25 Anuj Mishra comment Share Follow 0 reply Please log in or register to add a comment.