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