diff options
author | Rickard Green <[email protected]> | 2017-01-17 12:31:33 +0100 |
---|---|---|
committer | Rickard Green <[email protected]> | 2017-01-17 12:31:33 +0100 |
commit | 968b6b656abd90a8f9d7bc058bce255a57502fc7 (patch) | |
tree | 7b5053917c9e512541a1e86808709168e1ebcd9b /erts/emulator/beam/erl_gc.h | |
parent | 268fa11bc6904809643a4f99cb6f7c35edabf5dd (diff) | |
parent | 6db6cd94682d05eddbfa8b712419e70576d20846 (diff) | |
download | otp-968b6b656abd90a8f9d7bc058bce255a57502fc7.tar.gz otp-968b6b656abd90a8f9d7bc058bce255a57502fc7.tar.bz2 otp-968b6b656abd90a8f9d7bc058bce255a57502fc7.zip |
Merge branch 'maint'
* maint:
Fix memory leak of temporary heap
Diffstat (limited to 'erts/emulator/beam/erl_gc.h')
-rw-r--r-- | erts/emulator/beam/erl_gc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/erts/emulator/beam/erl_gc.h b/erts/emulator/beam/erl_gc.h index 54ea9ca3c0..9a177b7c59 100644 --- a/erts/emulator/beam/erl_gc.h +++ b/erts/emulator/beam/erl_gc.h @@ -157,5 +157,6 @@ void erts_offset_heap(Eterm*, Uint, Sint, Eterm*, Eterm*); void erts_free_heap_frags(struct process* p); Eterm erts_max_heap_size_map(Sint, Uint, Eterm **, Uint *); int erts_max_heap_size(Eterm, Uint *, Uint *); +void erts_deallocate_young_generation(Process *c_p); #endif /* __ERL_GC_H__ */ |