diff options
author | Sverker Eriksson <[email protected]> | 2016-04-29 16:37:35 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2016-04-29 17:04:28 +0200 |
commit | c2c47441ddc436a6d36aa1264ed6f198a9e0c3e0 (patch) | |
tree | 75980331e25f293a4eb768cd97d76072e3c984a2 /erts/emulator/sys/common/erl_mseg.c | |
parent | 4319cd608063e3612c74b534180b19ab29173667 (diff) | |
download | otp-c2c47441ddc436a6d36aa1264ed6f198a9e0c3e0.tar.gz otp-c2c47441ddc436a6d36aa1264ed6f198a9e0c3e0.tar.bz2 otp-c2c47441ddc436a6d36aa1264ed6f198a9e0c3e0.zip |
erts: Move option info for erts_mmap
from {allocator,mseg_alloc} to {allocator,erts_mmap}
Diffstat (limited to 'erts/emulator/sys/common/erl_mseg.c')
-rw-r--r-- | erts/emulator/sys/common/erl_mseg.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/erts/emulator/sys/common/erl_mseg.c b/erts/emulator/sys/common/erl_mseg.c index 43e75e2573..3a477089e7 100644 --- a/erts/emulator/sys/common/erl_mseg.c +++ b/erts/emulator/sys/common/erl_mseg.c @@ -996,10 +996,7 @@ info_options(ErtsMsegAllctr_t *ma, Uint **hpp, Uint *szp) { - Eterm res; - - res = erts_mmap_info_options(&erts_dflt_mmapper, - prefix, print_to_p, print_to_arg, hpp, szp); + Eterm res = NIL; if (print_to_p) { int to = *print_to_p; |