diff options
author | Björn Gustavsson <[email protected]> | 2012-05-10 11:28:17 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2012-05-10 17:13:02 +0200 |
commit | eb96183881edd2c1b9b8b15f9adda60c30fb1bef (patch) | |
tree | f30957615a7c25d4b3011e0d38aafcac4c97ae24 /erts/emulator/beam/bif.c | |
parent | 3136c77b2e8e2801343558d6c79b4a7cb9d06117 (diff) | |
download | otp-eb96183881edd2c1b9b8b15f9adda60c30fb1bef.tar.gz otp-eb96183881edd2c1b9b8b15f9adda60c30fb1bef.tar.bz2 otp-eb96183881edd2c1b9b8b15f9adda60c30fb1bef.zip |
Remove the erlang:garbage_collect_message_area/0 BIF
Diffstat (limited to 'erts/emulator/beam/bif.c')
-rw-r--r-- | erts/emulator/beam/bif.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/erts/emulator/beam/bif.c b/erts/emulator/beam/bif.c index 39d4582435..fc00b42454 100644 --- a/erts/emulator/beam/bif.c +++ b/erts/emulator/beam/bif.c @@ -3517,22 +3517,6 @@ BIF_RETTYPE garbage_collect_0(BIF_ALIST_0) } /**********************************************************************/ -/* Perform garbage collection of the message area */ - -BIF_RETTYPE garbage_collect_message_area_0(BIF_ALIST_0) -{ -#if defined(HYBRID) && !defined(INCREMENTAL) - int reds = 0; - - FLAGS(BIF_P) |= F_NEED_FULLSWEEP; - reds = erts_global_garbage_collect(BIF_P, 0, NULL, 0); - BIF_RET2(am_true, reds); -#else - BIF_RET(am_false); -#endif -} - -/**********************************************************************/ /* Return a list of active ports */ BIF_RETTYPE ports_0(BIF_ALIST_0) |