Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Take the read/write operations performed by each process thread and put them in the order the process does thread executes them (process thread order)
  2. Interleave the operations in some way to form a total program order
  3. Read operations must return most recently written data in the total program order for the execution to be sequentially consistent
  4. Implies all processes see the same total ordering of the operations

...