summaryrefslogtreecommitdiffstats
path: root/TCAP
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2012-01-30 23:37:53 +0100
committerHarald Welte <laforge@gnumonks.org>2012-01-30 23:37:53 +0100
commit50f0aac3443dd81e630f36b735ed6bc026f17d23 (patch)
treee4870155887f59cbe496fce45dcec4a1f6336752 /TCAP
parent44a2bf3a3a0661078f02e682367b01a7260e6990 (diff)
tcap_sup: add comment
Diffstat (limited to 'TCAP')
-rw-r--r--TCAP/src/tcap_sup.erl1
1 files changed, 1 insertions, 0 deletions
diff --git a/TCAP/src/tcap_sup.erl b/TCAP/src/tcap_sup.erl
index 4b6027b..4de1f5f 100644
--- a/TCAP/src/tcap_sup.erl
+++ b/TCAP/src/tcap_sup.erl
@@ -64,4 +64,5 @@ init(_Args) ->
StartFunc = {tcap_sap_sup, start_link, []},
% {Id, StartFunc, Restart, Shutdown, Tpype, Modules}
ChildSpec = {tcap_sap_sup, StartFunc, permanent, infinity, supervisor, [tcap_sap_sup]},
+ % simple_one_for_one will not start any children!
{ok,{{simple_one_for_one, 10, 60}, [ChildSpec]}}.