Sequential Consistency
•Sequential Consistency is a very strict
form of memory consistency
•A MP is sequentially consistent
if the result of any execution is the same as some sequential order and operations
of each processor are in program order
•
A=1; while (A==0)do;
B=1;
while (B==0)do;
print A;
