Skip to content

Commit

Permalink
Merge pull request #6639 from max-au/max-au/hprof
Browse files Browse the repository at this point in the history
[hprof] Process heap profiler
OTP-18756
  • Loading branch information
frazze-jobb committed Sep 6, 2023
2 parents 513d737 + ce53959 commit 640377c
Show file tree
Hide file tree
Showing 8 changed files with 1,734 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/tools/doc/src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ XML_APPLICATION_FILES = ref_man.xml
XML_REF3_FILES = \
cover.xml \
eprof.xml \
hprof.xml \
fprof.xml \
cprof.xml \
lcnt.xml \
Expand Down
726 changes: 726 additions & 0 deletions lib/tools/doc/src/hprof.xml

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions lib/tools/doc/src/ref_man.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@
Erlang programs. Uses trace to file to minimize runtime
performance impact, and displays time for calling and called
functions.</item>
<tag><em>hprof</em></tag>
<item>A heap profiling tool; measures how much heap space is
allocated by Erlang processes.</item>

<tag><em>lcnt</em></tag>
<item>A lock profiling tool for the Erlang runtime system.</item>
Expand All @@ -71,6 +74,7 @@
<xi:include href="eprof.xml"/>
<xi:include href="erlang_mode.xml"/>
<xi:include href="fprof.xml"/>
<xi:include href="hprof.xml"/>
<xi:include href="lcnt.xml"/>
<xi:include href="make.xml"/>
<xi:include href="tags.xml"/>
Expand Down
1 change: 1 addition & 0 deletions lib/tools/doc/src/specs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<xi:include href="../specs/specs_make.xml"/>
<xi:include href="../specs/specs_lcnt.xml"/>
<xi:include href="../specs/specs_eprof.xml"/>
<xi:include href="../specs/specs_hprof.xml"/>
<xi:include href="../specs/specs_tags.xml"/>
<xi:include href="../specs/specs_cover.xml"/>
<xi:include href="../specs/specs_xref.xml"/>
Expand Down
1 change: 1 addition & 0 deletions lib/tools/src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ RELSYSDIR = $(RELEASE_PATH)/lib/tools-$(VSN)
MODULES= \
cover \
eprof \
hprof \
fprof \
cprof \
lcnt \
Expand Down

0 comments on commit 640377c

Please sign in to comment.