aboutsummaryrefslogtreecommitdiffstats
path: root/erts/preloaded
diff options
context:
space:
mode:
authorSteve Vinoski <[email protected]>2013-09-04 10:21:47 -0400
committerLukas Larsson <[email protected]>2013-09-24 09:53:35 +0200
commit75a79e6547fd66c2194d6f488c30ad888a715f4b (patch)
treefc463d28df3ff9871c9fa46eed4e0f3589245141 /erts/preloaded
parent5fb8ad6250e2a40b12824f89c42dc91b04a39c40 (diff)
downloadotp-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/preloaded')
-rw-r--r--erts/preloaded/src/erlang.erl3
1 files changed, 2 insertions, 1 deletions
diff --git a/erts/preloaded/src/erlang.erl b/erts/preloaded/src/erlang.erl
index a969ef91dc..d40ee7c59a 100644
--- a/erts/preloaded/src/erlang.erl
+++ b/erts/preloaded/src/erlang.erl
@@ -2099,13 +2099,14 @@ tuple_to_list(_Tuple) ->
(creation) -> integer();
(debug_compiled) -> boolean();
(dist) -> binary();
+ (dist_buf_busy_limit) -> non_neg_integer();
(dist_ctrl) -> {Node :: node(),
ControllingEntity :: port() | pid()};
(driver_version) -> string();
(dynamic_trace) -> none | dtrace | systemtap;
(dynamic_trace_probes) -> boolean();
(elib_malloc) -> false;
- (dist_buf_busy_limit) -> non_neg_integer();
+ (ets_limit) -> pos_integer();
(fullsweep_after) -> {fullsweep_after, non_neg_integer()};
(garbage_collection) -> [{atom(), integer()}];
(heap_sizes) -> [non_neg_integer()];