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.c | |
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.c')
-rw-r--r-- | erts/emulator/beam/erl_db.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/erts/emulator/beam/erl_db.c b/erts/emulator/beam/erl_db.c index 98c2988323..40b8eaf8fb 100644 --- a/erts/emulator/beam/erl_db.c +++ b/erts/emulator/beam/erl_db.c @@ -3811,6 +3811,13 @@ erts_db_foreach_offheap(DbTable *tb, tb->common.meth->db_foreach_offheap(tb, func, arg); } +/* retrieve max number of ets tables */ +Uint +erts_db_get_max_tabs() +{ + return db_max_tabs; +} + /* * For testing of meta tables only. * |