vault backup: 2025-03-24 08:34:22

This commit is contained in:
Marco Realacci 2025-03-24 08:34:23 +01:00
parent a8808b5953
commit 151e0612f0
2 changed files with 13 additions and 5 deletions

View file

@ -5,4 +5,12 @@ Let us define $op ->_{proc} op'$ to hold whenever there exists a process p that
![[Pasted image 20250324082545.png]]
The problem with sequential consistency is that it
>[!warning]
>The problem with sequential consistency is that it is NOT compositional.
Consider for example the following two processes:
```
p1: Q.enq(a); Q'.enq(b'); Q'deq()->b'
p2: Q'.enq(a'); Q.enq(b); Q.deq()->b
```