aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/beam/erl_gc.h
diff options
context:
space:
mode:
authorRickard Green <[email protected]>2017-01-13 14:22:31 +0100
committerRickard Green <[email protected]>2017-01-13 14:22:31 +0100
commit5de2d73abd5d369676e43acd17a9d9db9795ccd5 (patch)
treea4f04067c1b764e94d66a6aa3b4cad5b9c8ff2b2 /erts/emulator/beam/erl_gc.h
parent8df00f51a4a2c0c6788b3dcf3c6be56c50e44461 (diff)
downloadotp-5de2d73abd5d369676e43acd17a9d9db9795ccd5.tar.gz
otp-5de2d73abd5d369676e43acd17a9d9db9795ccd5.tar.bz2
otp-5de2d73abd5d369676e43acd17a9d9db9795ccd5.zip
Fix memory leak of temporary heap
This bug was introduced in previous commit, and has never been released in an official OTP version.
Diffstat (limited to 'erts/emulator/beam/erl_gc.h')
-rw-r--r--erts/emulator/beam/erl_gc.h1
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__ */