diff options
author | Erlang/OTP <otp@erlang.org> | 2020-11-05 12:18:44 +0100 |
---|---|---|
committer | Erlang/OTP <otp@erlang.org> | 2020-11-05 12:18:44 +0100 |
commit | f09673cdb7352cf1b24930c78dfdb26a6758a37d (patch) | |
tree | 658404de975b2899da71935d111c19464f8e64f2 /erts | |
parent | 035f19bb7c3124481b520037ac0fb55114137c66 (diff) | |
parent | 5e1a56f4f3c2ed67ea92246ef5c2e9347dac3cae (diff) | |
download | erlang-f09673cdb7352cf1b24930c78dfdb26a6758a37d.tar.gz |
Merge branch 'rickard/small-memory-build-fix/OTP-16939' into maint-23
* rickard/small-memory-build-fix/OTP-16939:
Fix SMALL_MEMORY build
Diffstat (limited to 'erts')
-rw-r--r-- | erts/emulator/beam/erl_alloc_util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/erts/emulator/beam/erl_alloc_util.h b/erts/emulator/beam/erl_alloc_util.h index bba9efa931..a8f832afe8 100644 --- a/erts/emulator/beam/erl_alloc_util.h +++ b/erts/emulator/beam/erl_alloc_util.h @@ -151,10 +151,12 @@ typedef struct { 0, /* (bool) tpref: thread preferred */\ 0, /* (bool) ramv: realloc always moves */\ 0, /* (bool) atags: tagged allocations */\ + -1, /* (ix) cp: carrier pool */\ 64*1024, /* (bytes) sbct: sbc threshold */\ 2*1024*2024, /* (amount) asbcst: abs sbc shrink threshold */\ 20, /* (%) rsbcst: rel sbc shrink threshold */\ 80, /* (%) rsbcmt: rel sbc move threshold */\ + 50, /* (%) rmbcmt: rel mbc move threshold */\ 128*1024, /* (bytes) mmbcs: main multiblock carrier size */\ 256, /* (amount) mmsbc: max mseg sbcs */\ ~((UWord) 0), /* (amount) mmmbc: max mseg mbcs */ \ |