InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference Between Processor And Fifo Consistency? |
|
Answer» In FIFO consistency only writes from a SINGLE processor are visible in the order issued. In processor consistency, additionally there EXISTS a global ORDERING of writes to any address x by DIFFERENT PROCESSES exists that is consistent with the local views. In FIFO consistency only writes from a single processor are visible in the order issued. In processor consistency, additionally there exists a global ordering of writes to any address x by different processes exists that is consistent with the local views. |
|