Sequential Consistency
Weaker than linearizability — drops the real-time requirement.
Definition: all operations appear in some sequential order that is consistent with the program order of each individual process.
Process A: W(x=1) R(y) → 0
Process B: W(y=1) R(x) → 0
Both reads returning 0 is allowed under sequential consistency (but NOT linearizability).
Used by: some CPU memory models (TSO variants)