mirror of
https://github.com/gperftools/gperftools
synced 2024-12-20 22:40:09 +00:00
51b4875f8a
* google-perftools: initial release: The google-perftools package contains some utilities to improve and analyze the performance of C++ programs. This includes an optimized thread-caching malloc() and cpu and heap profiling utilities. git-svn-id: http://gperftools.googlecode.com/svn/trunk@9 6b5cf1ce-ec42-a296-1ba9-69fdba395a50
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]
|
|
|
|
}
|