diff options
author | Steve Vinoski <[email protected]> | 2013-09-04 10:21:47 -0400 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2013-09-24 09:53:35 +0200 |
commit | 75a79e6547fd66c2194d6f488c30ad888a715f4b (patch) | |
tree | fc463d28df3ff9871c9fa46eed4e0f3589245141 /erts/emulator/beam/erl_db.h | |
parent | 5fb8ad6250e2a40b12824f89c42dc91b04a39c40 (diff) | |
download | otp-75a79e6547fd66c2194d6f488c30ad888a715f4b.tar.gz otp-75a79e6547fd66c2194d6f488c30ad888a715f4b.tar.bz2 otp-75a79e6547fd66c2194d6f488c30ad888a715f4b.zip |
add system_info(ets_limit)
Add system_info(ets_limit) to provide a way to retrieve the runtime's
maximum number of ETS tables. Add tests and documentation for it too.
Also repair the alphabetical order of system_info/1 argument descriptions
in the documentation and in the erlang.erl clauses. Add new preloaded
erlang.erl due to that change. Also ensure all system_info/1 clauses are
represented in the erlang.xml source documentation -- a couple had been
inadvertently dropped in previous commits when other clauses were added.
Diffstat (limited to 'erts/emulator/beam/erl_db.h')
-rw-r--r-- | erts/emulator/beam/erl_db.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/erts/emulator/beam/erl_db.h b/erts/emulator/beam/erl_db.h index 6b62e10eb7..5b4681fc90 100644 --- a/erts/emulator/beam/erl_db.h +++ b/erts/emulator/beam/erl_db.h @@ -79,6 +79,8 @@ extern erts_smp_atomic_t erts_ets_misc_mem_size; Eterm erts_ets_colliding_names(Process*, Eterm name, Uint cnt); +Uint erts_db_get_max_tabs(void); + #endif #if defined(ERTS_WANT_DB_INTERNAL__) && !defined(ERTS_HAVE_DB_INTERNAL__) |