aboutsummaryrefslogtreecommitdiffstats
path: root/lib/runtime_tools/src/runtime_tools_sup.erl
diff options
context:
space:
mode:
authorSiri Hansen <[email protected]>2012-09-05 13:26:35 +0200
committerSiri Hansen <[email protected]>2012-09-05 13:26:35 +0200
commit50c20c504694ad606b9d1fe705a87b40e46140c3 (patch)
tree5de4a241b7462c5ce286b4e2b44961272187b4a2 /lib/runtime_tools/src/runtime_tools_sup.erl
parent0dca4bcf9eb70a567c617ebc1b2da15057ad3806 (diff)
parent3b73cabcba3ac6dcc91c7ae2b00f21d254dfdd4b (diff)
downloadotp-50c20c504694ad606b9d1fe705a87b40e46140c3.tar.gz
otp-50c20c504694ad606b9d1fe705a87b40e46140c3.tar.bz2
otp-50c20c504694ad606b9d1fe705a87b40e46140c3.zip
Merge branch 'siri/runtime_tools/remove-inviso-rest'
* siri/runtime_tools/remove-inviso-rest: Remove all traces of inviso application from runtime_tools
Diffstat (limited to 'lib/runtime_tools/src/runtime_tools_sup.erl')
-rw-r--r--lib/runtime_tools/src/runtime_tools_sup.erl12
1 files changed, 4 insertions, 8 deletions
diff --git a/lib/runtime_tools/src/runtime_tools_sup.erl b/lib/runtime_tools/src/runtime_tools_sup.erl
index 913719c449..c8dab250dd 100644
--- a/lib/runtime_tools/src/runtime_tools_sup.erl
+++ b/lib/runtime_tools/src/runtime_tools_sup.erl
@@ -1,7 +1,7 @@
%%
%% %CopyrightBegin%
%%
-%% Copyright Ericsson AB 2006-2011. All Rights Reserved.
+%% Copyright Ericsson AB 2006-2012. All Rights Reserved.
%%
%% The contents of this file are subject to the Erlang Public License,
%% Version 1.1, (the "License"); you may not use this file except in
@@ -31,15 +31,11 @@
%% =============================================================================
%% The runtime tools top most supervisor starts:
-%% -The inviso runtime component. This is the only way to get the runtime component
-%% started automatically (if for instance autostart is wanted).
-%% Note that it is not impossible that the runtime component terminates it self
-%% should it discover that no autostart is configured.
+%% -The ttb_autostart component. This is used for tracing at startup
+%% using observer/ttb.
init(AutoModArgs) ->
Flags = {one_for_one, 0, 3600},
- Children = [{inviso_rt, {inviso_rt, start_link_auto, [AutoModArgs]},
- temporary, 3000, worker, [inviso_rt]},
- {ttb_autostart, {ttb_autostart, start_link, []},
+ Children = [{ttb_autostart, {ttb_autostart, start_link, []},
temporary, 3000, worker, [ttb_autostart]}],
{ok, {Flags, Children}}.
%% -----------------------------------------------------------------------------