aboutsummaryrefslogtreecommitdiffstats
path: root/lib/tools/src
diff options
context:
space:
mode:
authorJohn Högberg <[email protected]>2018-02-09 10:24:43 +0100
committerJohn Högberg <[email protected]>2018-02-12 13:32:11 +0100
commitab965710d014912cbd3c4ef8f9c3acc0dffa1d30 (patch)
tree6112ec8183b7daf0f70dbd5e6bf976d03bc1a320 /lib/tools/src
parent9be186620d86b60791f20ddf5d051c63d576e737 (diff)
downloadotp-ab965710d014912cbd3c4ef8f9c3acc0dffa1d30.tar.gz
otp-ab965710d014912cbd3c4ef8f9c3acc0dffa1d30.tar.bz2
otp-ab965710d014912cbd3c4ef8f9c3acc0dffa1d30.zip
Automatically start lcnt server on first use
lcnt:collect is documented as implicitly starting the lcnt server but didn't do so prior to this commit. I've decided to extend this behavior to all operations as the overhead is negligible and it's a bit more convenient to use.
Diffstat (limited to 'lib/tools/src')
-rw-r--r--lib/tools/src/lcnt.erl7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/tools/src/lcnt.erl b/lib/tools/src/lcnt.erl
index 139b3d8a4a..20b031a7ad 100644
--- a/lib/tools/src/lcnt.erl
+++ b/lib/tools/src/lcnt.erl
@@ -218,9 +218,11 @@ raw() -> call(raw).
set(Option, Value) -> call({set, Option, Value}).
set({Option, Value}) -> call({set, Option, Value}).
save(Filename) -> call({save, Filename}).
-load(Filename) -> ok = start_internal(), call({load, Filename}).
+load(Filename) -> call({load, Filename}).
-call(Msg) -> gen_server:call(?MODULE, Msg, infinity).
+call(Msg) ->
+ ok = start_internal(),
+ gen_server:call(?MODULE, Msg, infinity).
%% -------------------------------------------------------------------- %%
%%
@@ -237,7 +239,6 @@ apply(Fun) when is_function(Fun) ->
lcnt:apply(Fun, []).
apply(Fun, As) when is_function(Fun) ->
- ok = start_internal(),
Opt = lcnt:rt_opt({copy_save, true}),
lcnt:clear(),
Res = erlang:apply(Fun, As),