mirror of
https://github.com/gperftools/gperftools
synced 2024-12-30 03:02:02 +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
22 lines
444 B
Plaintext
22 lines
444 B
Plaintext
digraph ThreadHeap {
|
|
rankdir=LR
|
|
node [shape=box, width=0.3, height=0.3]
|
|
nodesep=.05
|
|
|
|
heap [shape=record, height=2, label="<f0>class 0|<f1>class 1|<f2>class 2|..."]
|
|
O0 [label=""]
|
|
O1 [label=""]
|
|
O2 [label=""]
|
|
O3 [label=""]
|
|
O4 [label=""]
|
|
O5 [label=""]
|
|
sep1 [shape=plaintext, label="..."]
|
|
sep2 [shape=plaintext, label="..."]
|
|
sep3 [shape=plaintext, label="..."]
|
|
|
|
heap:f0 -> O0 -> O1 -> sep1
|
|
heap:f1 -> O2 -> O3 -> sep2
|
|
heap:f2 -> O4 -> O5 -> sep3
|
|
|
|
}
|