Skip to content
Snippets Groups Projects
Commit 9cbc4c7f authored by Ralf Jung's avatar Ralf Jung
Browse files

few atomic snapshot comments

parent 9ef37d07
No related branches found
No related tags found
No related merge requests found
Pipeline #18170 passed
...@@ -9,7 +9,7 @@ From iris_examples.logatom.snapshot Require Import spec. ...@@ -9,7 +9,7 @@ From iris_examples.logatom.snapshot Require Import spec.
Set Default Proof Using "Type". Set Default Proof Using "Type".
(** Specifying snapshots with histories (** Specifying snapshots with histories
Implementing atomic pair snapshot data structure from Sergey et al. (ESOP 2015) *) Inspired by atomic pair snapshot data structure from Sergey et al. (ESOP 2015) *)
(* (*
...@@ -25,6 +25,9 @@ Definition new_snapshot : val := ...@@ -25,6 +25,9 @@ Definition new_snapshot : val :=
let xp1 = !xp in let xp1 = !xp in
let v = (!xp1).2 let v = (!xp1).2
let xp2 = ref (x, v + 1) let xp2 = ref (x, v + 1)
// This is where we need the nested references: the CAS compares the old
// inner reference with the new one, because it cannot atomically compared
// a pair of values.
if CAS xp xp1 xp2 if CAS xp xp1 xp2
then () then ()
else writeX (xp, yp) x else writeX (xp, yp) x
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment