diff options
author | Sverker Eriksson <[email protected]> | 2012-01-19 14:53:26 +0100 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2012-02-21 12:22:59 +0100 |
commit | b45686b4bc9b8bf07190d6b13b2e9a8167c61184 (patch) | |
tree | f617946998fc6cfaeed412392b87db26e9a2b5b9 /erts/emulator/beam/index.h | |
parent | c9d4422cb4f54363096d4efb6d667071450fa50b (diff) | |
download | otp-b45686b4bc9b8bf07190d6b13b2e9a8167c61184.tar.gz otp-b45686b4bc9b8bf07190d6b13b2e9a8167c61184.tar.bz2 otp-b45686b4bc9b8bf07190d6b13b2e9a8167c61184.zip |
erts: Add abort logic to export tables
Diffstat (limited to 'erts/emulator/beam/index.h')
-rw-r--r-- | erts/emulator/beam/index.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/erts/emulator/beam/index.h b/erts/emulator/beam/index.h index 67b250590b..69d1cc0a22 100644 --- a/erts/emulator/beam/index.h +++ b/erts/emulator/beam/index.h @@ -58,6 +58,8 @@ int index_get(IndexTable*, void*); int index_put(IndexTable*, void*); void erts_index_merge(Hash*, IndexTable*); +/* Erase all entries with index 'ix' and higher +*/ void index_erase_latest_from(IndexTable*, Uint ix); ERTS_GLB_INLINE IndexSlot* erts_index_lookup(IndexTable*, Uint); |