aboutsummaryrefslogtreecommitdiffstats
path: root/lib/runtime_tools/src/runtime_tools_sup.erl
diff options
context:
space:
mode:
authorHenrik Nord <[email protected]>2011-09-06 15:27:22 +0200
committerHenrik Nord <[email protected]>2011-09-06 15:29:35 +0200
commit684f1b321c8c4d07edee23737e178976af051913 (patch)
tree320f69cbd3cf279dfaf30a86e6b4099ba57549c0 /lib/runtime_tools/src/runtime_tools_sup.erl
parente7af9a6004cc13f1c49c4b6304adc9b8cd859cba (diff)
parent7e2c8763c225dc16f98cc5746fa141b970a6aaf3 (diff)
downloadotp-684f1b321c8c4d07edee23737e178976af051913.tar.gz
otp-684f1b321c8c4d07edee23737e178976af051913.tar.bz2
otp-684f1b321c8c4d07edee23737e178976af051913.zip
Merge branch 'pd/ttb-cleanup' into major
OTP-9430 OTP-9403 OTP-9431
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}}.
%% -----------------------------------------------------------------------------