1 digraph Overview {
2 node [shape = box]
3
4 {rank=same
5 T1 [label="Thread Cache"]
6 Tsep [label="...", shape=plaintext]
7 Tn [label="Thread Cache"]
8 T1 -> Tsep -> Tn [style=invis]
9 }
10
11 C [label="Central\nHeap"]
12 T1 -> C [dir=both]
13 Tn -> C [dir=both]
14
15 }
16