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