391 views
2 votes
2 votes
Two processes page tables have user page entries mapped to frame number 3. Does this mean they share the same physical page ?

2 Answers

0 votes
0 votes
In a uniprocessor system, one process at a time gets executed.I think In that case, there will be no problem even if two process pages are mapping to same frame number. They go to same frame number but, one after the other.

Related questions

1 votes
1 votes
1 answer
4
Mak Indus asked Jan 11, 2019
2,943 views
How many processes will be created when we run the below program?main ( ){Printf (“Hi”);fork ( );Printf (“Hello”);fork ( );fork ( );}(a) 3 ...