overview.dot 239 B

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