aboutsummaryrefslogtreecommitdiffstats
path: root/lib/runtime_tools/src/runtime_tools_sup.erl
diff options
context:
space:
mode:
authorAndrzej Telezynski <[email protected]>2011-08-25 00:45:07 +0200
committerHenrik Nord <[email protected]>2011-08-30 15:22:20 +0200
commit7e2c8763c225dc16f98cc5746fa141b970a6aaf3 (patch)
tree0edf82aa3d89cdbb14a295c685c6ceccfefc55bd /lib/runtime_tools/src/runtime_tools_sup.erl
parent1924817788f381da1b8356e336d62f4687717ee4 (diff)
downloadotp-7e2c8763c225dc16f98cc5746fa141b970a6aaf3.tar.gz
otp-7e2c8763c225dc16f98cc5746fa141b970a6aaf3.tar.bz2
otp-7e2c8763c225dc16f98cc5746fa141b970a6aaf3.zip
Support for stopped and resumed tracing.
Diffstat (limited to 'lib/runtime_tools/src/runtime_tools_sup.erl')
-rw-r--r--lib/runtime_tools/src/runtime_tools_sup.erl4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/runtime_tools/src/runtime_tools_sup.erl b/lib/runtime_tools/src/runtime_tools_sup.erl
index 1a872c355d..4fcb2292d0 100644
--- a/lib/runtime_tools/src/runtime_tools_sup.erl
+++ b/lib/runtime_tools/src/runtime_tools_sup.erl
@@ -38,6 +38,8 @@
init(AutoModArgs) ->
Flags = {one_for_one, 0, 3600},
Children = [{inviso_rt, {inviso_rt, start_link_auto, [AutoModArgs]},
- temporary, 3000, worker, [inviso_rt]}],
+ temporary, 3000, worker, [inviso_rt]},
+ {ttb_autostart, {ttb_autostart, start_link, []},
+ temporary, 3000, worker, [ttb_autostart]}],
{ok, {Flags, Children}}.
%% -----------------------------------------------------------------------------