aboutsummaryrefslogtreecommitdiff
path: root/src/coaperl_sup.erl
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2015-12-13 17:47:14 +0100
committerGuido Günther <agx@sigxcpu.org>2015-12-13 17:47:14 +0100
commitbd3ae9694c0e8669c8ce53aef685e8afede14f33 (patch)
treee849857832827f7be9a3166932bae7fe749fc84a /src/coaperl_sup.erl
Initial commitHEADmaster
Diffstat (limited to 'src/coaperl_sup.erl')
-rw-r--r--src/coaperl_sup.erl29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/coaperl_sup.erl b/src/coaperl_sup.erl
new file mode 100644
index 0000000..b57c918
--- /dev/null
+++ b/src/coaperl_sup.erl
@@ -0,0 +1,29 @@
+-module(coaperl_sup).
+
+-behaviour(supervisor).
+
+%% API
+-export([start_link/0]).
+
+%% Supervisor callbacks
+-export([init/1]).
+
+%% Helper macro for declaring children of supervisor
+-define(CHILD(I, Type, Args), {I, {I, start_link, [Args]}, permanent, 5000, Type, [I]}).
+
+%% ===================================================================
+%% API functions
+%% ===================================================================
+
+start_link() ->
+ supervisor:start_link({local, ?MODULE}, ?MODULE, []).
+
+%% ===================================================================
+%% Supervisor callbacks
+%% ===================================================================
+
+init([]) ->
+ {ok, { {one_for_one, 5, 10}
+% [?CHILD(udp, worker, [])]
+ } }.
+