blah
This commit is contained in:
parent
08972f0160
commit
66b65d3fd4
1
.gitignore
vendored
1
.gitignore
vendored
@ -3,6 +3,7 @@ deps
|
|||||||
*.o
|
*.o
|
||||||
*.beam
|
*.beam
|
||||||
*.plt
|
*.plt
|
||||||
|
*.swp
|
||||||
erl_crash.dump
|
erl_crash.dump
|
||||||
ebin/*.beam
|
ebin/*.beam
|
||||||
rel/example_project
|
rel/example_project
|
||||||
|
|||||||
@ -2,5 +2,11 @@
|
|||||||
[{description, "Zomp client program"},
|
[{description, "Zomp client program"},
|
||||||
{vsn, "0.1.0"},
|
{vsn, "0.1.0"},
|
||||||
{applications, [stdlib, kernel]},
|
{applications, [stdlib, kernel]},
|
||||||
{modules, [zx, zxd_sup, zxd]},
|
{modules, [zx,
|
||||||
|
zx_sup,
|
||||||
|
zx_daemon,
|
||||||
|
zx_conn_sup,
|
||||||
|
zx_conn,
|
||||||
|
zx_lib,
|
||||||
|
zx_net]},
|
||||||
{mod, {zx, []}}]}.
|
{mod, {zx, []}}]}.
|
||||||
|
|||||||
Binary file not shown.
@ -42,7 +42,7 @@ start_conn(Host, Serial) ->
|
|||||||
| {shutdown, term()}
|
| {shutdown, term()}
|
||||||
| term().
|
| term().
|
||||||
%% @private
|
%% @private
|
||||||
%% Called by zx_daemon_sup.
|
%% Called by zx_sup.
|
||||||
%%
|
%%
|
||||||
%% Spawns a single, registered supervisor process.
|
%% Spawns a single, registered supervisor process.
|
||||||
%%
|
%%
|
||||||
|
|||||||
@ -4,7 +4,7 @@
|
|||||||
%%% This supervisor maintains the lifecycle of the zxd worker process.
|
%%% This supervisor maintains the lifecycle of the zxd worker process.
|
||||||
%%% @end
|
%%% @end
|
||||||
|
|
||||||
-module(zx_daemon_sup).
|
-module(zx_sup).
|
||||||
-behavior(supervisor).
|
-behavior(supervisor).
|
||||||
-author("Craig Everett <zxq9@zxq9.com>").
|
-author("Craig Everett <zxq9@zxq9.com>").
|
||||||
-copyright("Craig Everett <zxq9@zxq9.com>").
|
-copyright("Craig Everett <zxq9@zxq9.com>").
|
||||||
Loading…
x
Reference in New Issue
Block a user