diff options
author | Sverker Eriksson <[email protected]> | 2016-04-29 16:55:49 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2016-04-29 17:06:29 +0200 |
commit | 9f5fd83ffda711d80000bfe1cb7f99c40d9fffde (patch) | |
tree | 41a074006953a4d3f63af32707439a7e6fd458e0 /erts/emulator/sys/common/erl_mseg.h | |
parent | 48d24da6586a80ab67fe5c242d17ea4d044c917c (diff) | |
download | otp-9f5fd83ffda711d80000bfe1cb7f99c40d9fffde.tar.gz otp-9f5fd83ffda711d80000bfe1cb7f99c40d9fffde.tar.bz2 otp-9f5fd83ffda711d80000bfe1cb7f99c40d9fffde.zip |
erts: Fix system_info({allocator_sizes, mseg_alloc})
will now return
[{instance,0,[{segments_size,9961472,9961472,11010048}]},
{instance,1,[{segments_size,6291456,6291456,6815744}]},
{instance,2,[{segments_size,524288,524288,786432}]},
{instance,3,[{segments_size,1048576,1048576,1835008}]},
{instance,4,[{segments_size,0,0,262144}]}]
and not just empty lists.
Diffstat (limited to 'erts/emulator/sys/common/erl_mseg.h')
-rw-r--r-- | erts/emulator/sys/common/erl_mseg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/sys/common/erl_mseg.h b/erts/emulator/sys/common/erl_mseg.h index 192e5767e4..a43b409e94 100644 --- a/erts/emulator/sys/common/erl_mseg.h +++ b/erts/emulator/sys/common/erl_mseg.h @@ -99,7 +99,7 @@ void erts_mseg_init(ErtsMsegInit_t *init); void erts_mseg_late_init(void); /* Have to be called after all allocators, threads and timers have been initialized. */ Eterm erts_mseg_info_options(int, int *, void*, Uint **, Uint *); -Eterm erts_mseg_info(int, int *, void*, int, Uint **, Uint *); +Eterm erts_mseg_info(int, int *, void*, int, int, Uint **, Uint *); #endif /* #if HAVE_ERTS_MSEG */ |