aboutsummaryrefslogtreecommitdiffstats
path: root/lib/sasl/doc/src/rel/sup.1.erl
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sasl/doc/src/rel/sup.1.erl')
-rw-r--r--lib/sasl/doc/src/rel/sup.1.erl11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/sasl/doc/src/rel/sup.1.erl b/lib/sasl/doc/src/rel/sup.1.erl
new file mode 100644
index 0000000000..c73f1161b3
--- /dev/null
+++ b/lib/sasl/doc/src/rel/sup.1.erl
@@ -0,0 +1,11 @@
+-module(sup).
+-vsn(1).
+-behaviour(supervisor).
+-export([init/1]).
+
+init([]) ->
+ SupFlags = {one_for_one, 4, 3600},
+ Server = {my_server, {my_server, start_link, []},
+ permanent, 2000, worker, [my_server]},
+ GS1 = {gs1, {gs1, start_link, []}, permanent, 2000, worker, [gs1]},
+ {ok, {SupFlags, [Server, GS1]}}.