Skip to content

Commit

Permalink
erts: Add Garbage Collection internal docs
Browse files Browse the repository at this point in the history
  • Loading branch information
garazdawi committed Oct 27, 2017
1 parent f75fa81 commit bb52a55
Show file tree
Hide file tree
Showing 15 changed files with 208 additions and 0 deletions.
187 changes: 187 additions & 0 deletions erts/emulator/internal_doc/GarbageCollection.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions erts/emulator/internal_doc/figures/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.eps
20 changes: 20 additions & 0 deletions erts/emulator/internal_doc/figures/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# In order to update the figures you have to have both dia
# and imagemagick installed.

DIAGRAMS=$(wildcard *.dia)
EPS_DIAGRAMS=$(patsubst %.dia,%.eps,$(DIAGRAMS))
PNG_DIAGRAMS=$(patsubst %.dia,%.png,$(DIAGRAMS))

diagrams: $(EPS_DIAGRAMS)

png: $(PNG_DIAGRAMS)

update_png: png
git add $(PNG_DIAGRAMS)
git commit -m "Update internal docs figures"

%.eps: %.dia
dia --export=$@ $<

%.png: %.eps
convert $< -resize 65% $@
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added erts/emulator/internal_doc/figures/gc-start.dia
Binary file not shown.
Binary file added erts/emulator/internal_doc/figures/gc-start.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit bb52a55

Please sign in to comment.