summaryrefslogtreecommitdiffstats
path: root/src/ct_helper.erl
diff options
context:
space:
mode:
authorMichael Klishin <[email protected]>2021-03-17 19:35:14 +0300
committerLoïc Hoguin <[email protected]>2021-03-18 10:14:50 +0100
commit53477343824e13a009c7140a45fbd4b25c1628a8 (patch)
tree925b5ca7e67e13a207f4b57f9f64d541cf611746 /src/ct_helper.erl
parenta56e8a97b83c40400ec633bc20cfc6c028b1c7b4 (diff)
downloadct_helper-53477343824e13a009c7140a45fbd4b25c1628a8.tar.gz
ct_helper-53477343824e13a009c7140a45fbd4b25c1628a8.tar.bz2
ct_helper-53477343824e13a009c7140a45fbd4b25c1628a8.zip
Squash some warnings emitted on Erlang 24
Diffstat (limited to 'src/ct_helper.erl')
-rw-r--r--src/ct_helper.erl12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/ct_helper.erl b/src/ct_helper.erl
index 0c1247b..8e9d6d1 100644
--- a/src/ct_helper.erl
+++ b/src/ct_helper.erl
@@ -240,18 +240,10 @@ make_certs_in_ets() ->
%% @doc Return the name of the calling function.
%%
-%% With a native VM we always return the current pid because
-%% the stacktrace is not as well maintained and may not return
-%% the correct function name, especially when there is a mix
-%% of normal and native code.
+%% DEPRECATED: Use ?FUNCTION_NAME instead.
name() ->
- case code:is_module_native(kernel) of
- true ->
- self();
- false ->
- element(2, hd(tl(element(2, process_info(self(), current_stacktrace)))))
- end.
+ element(2, hd(tl(element(2, process_info(self(), current_stacktrace))))).
%% @doc Start and stop applications and their dependencies.