changes
[cdsspec-compiler.git] / writeup / figures / rmw_atomicity2.dot
1 digraph rmw_atomicity2 {
2 margin=0;
3 ranksep=.1;
4
5 //N1 [label="A: v.store(1)", shape=none, group="a"];
6 N1 [style=invis, shape=none];
7 N2 [label="B: v.rmw()", shape=none];
8 N3 [label="C: v.store(2)", shape=none];
9
10 N1 -> N2 [color=invis];
11 N1 -> N3 [color=invis, weight=100];
12 N2 -> N3 [label="mo", color="#00aa00", style=dashed, penwidth=3];
13 }