aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/beam/beam_emu.c
diff options
context:
space:
mode:
authorBjörn-Egil Dahlberg <[email protected]>2010-07-22 17:55:28 +0200
committerPatrik Nyblom <[email protected]>2010-08-12 14:55:43 +0200
commit7664e3ac07f51522b464e550e6012056d4ab45d5 (patch)
treeb6f66bea0aa23c2276d2cb7fef4b4d24b2e2c8c8 /erts/emulator/beam/beam_emu.c
parentd3f229d4f311c218d6a92f575f63feb3a02eb68c (diff)
downloadotp-7664e3ac07f51522b464e550e6012056d4ab45d5.tar.gz
otp-7664e3ac07f51522b464e550e6012056d4ab45d5.tar.bz2
otp-7664e3ac07f51522b464e550e6012056d4ab45d5.zip
Increase vheap counter to Uint64
This will reduce the risk of integer wrapping in bin vheap counting. The vheap size series will now use the golden ratio instead of doubling and fibonacci sequences. OTP #8730
Diffstat (limited to 'erts/emulator/beam/beam_emu.c')
-rw-r--r--erts/emulator/beam/beam_emu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/emulator/beam/beam_emu.c b/erts/emulator/beam/beam_emu.c
index 260f349563..0b29644f24 100644
--- a/erts/emulator/beam/beam_emu.c
+++ b/erts/emulator/beam/beam_emu.c
@@ -3390,7 +3390,7 @@ apply_bif_or_nif_epilogue:
pb->val = bptr;
pb->bytes = (byte*) bptr->orig_bytes;
pb->flags = 0;
- MSO(c_p).overhead += pb->size / sizeof(Eterm);
+ OH_OVERHEAD(&(MSO(c_p)), pb->size / sizeof(Eterm));
new_binary = make_binary(pb);
goto do_bits_sub_bin;
}
@@ -3492,7 +3492,7 @@ apply_bif_or_nif_epilogue:
pb->bytes = (byte*) bptr->orig_bytes;
pb->flags = 0;
- MSO(c_p).overhead += tmp_arg1 / sizeof(Eterm);
+ OH_OVERHEAD(&(MSO(c_p)), tmp_arg1 / sizeof(Eterm));
StoreBifResult(2, make_binary(pb));
}