diff options
author | Björn-Egil Dahlberg <[email protected]> | 2015-03-11 18:45:12 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2015-03-12 19:15:34 +0100 |
commit | c8f731bfec32a34d49304ea78017b63af053eecd (patch) | |
tree | 119f9250ec01d070f098ad6ff6874fdc9ce70592 /erts/emulator/beam/bif.tab | |
parent | f9e568cbad942043592453d0fb7640d8bc02b1ae (diff) | |
download | otp-c8f731bfec32a34d49304ea78017b63af053eecd.tar.gz otp-c8f731bfec32a34d49304ea78017b63af053eecd.tar.bz2 otp-c8f731bfec32a34d49304ea78017b63af053eecd.zip |
erts, kernel: Fix erts_debug:size/1 for hashmaps
This commit introduces two BIFs:
* erts_internal:map_type/1
* erts_internal:map_hashmap_children/1
erts_internal:map_hashmap_children/1 is only intended for use within
erts_debug:size/1 since the internal hashmap node is not allowed to
leak anywhere.
Diffstat (limited to 'erts/emulator/beam/bif.tab')
-rw-r--r-- | erts/emulator/beam/bif.tab | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/erts/emulator/beam/bif.tab b/erts/emulator/beam/bif.tab index b4e821a986..c56a108b34 100644 --- a/erts/emulator/beam/bif.tab +++ b/erts/emulator/beam/bif.tab @@ -157,6 +157,8 @@ bif erts_internal:request_system_task/3 bif erts_internal:check_process_code/2 bif erts_internal:map_to_tuple_keys/1 +bif erts_internal:map_type/1 +bif erts_internal:map_hashmap_children/1 # inet_db support bif erlang:port_set_data/2 |