mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
16 lines
239 B
Plaintext
16 lines
239 B
Plaintext
digraph Overview {
|
|
node [shape = box]
|
|
|
|
{rank=same
|
|
T1 [label="Thread Cache"]
|
|
Tsep [label="...", shape=plaintext]
|
|
Tn [label="Thread Cache"]
|
|
T1 -> Tsep -> Tn [style=invis]
|
|
}
|
|
|
|
C [label="Central\nHeap"]
|
|
T1 -> C [dir=both]
|
|
Tn -> C [dir=both]
|
|
|
|
}
|