diff --git a/.gitignore b/.gitignore index 3826c85..bbcd1d5 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ deps *.o *.beam *.plt +*.swp erl_crash.dump ebin/*.beam rel/example_project diff --git a/zomp/lib/otpr-zx/0.1.0/ebin/zx.app b/zomp/lib/otpr-zx/0.1.0/ebin/zx.app index 646143b..23be553 100644 --- a/zomp/lib/otpr-zx/0.1.0/ebin/zx.app +++ b/zomp/lib/otpr-zx/0.1.0/ebin/zx.app @@ -2,5 +2,11 @@ [{description, "Zomp client program"}, {vsn, "0.1.0"}, {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, []}}]}. diff --git a/zomp/lib/otpr-zx/0.1.0/src/.zx_daemon.erl.swp b/zomp/lib/otpr-zx/0.1.0/src/.zx_daemon.erl.swp deleted file mode 100644 index 1b7e5a7..0000000 Binary files a/zomp/lib/otpr-zx/0.1.0/src/.zx_daemon.erl.swp and /dev/null differ diff --git a/zomp/lib/otpr-zx/0.1.0/src/zx_conn_sup.erl b/zomp/lib/otpr-zx/0.1.0/src/zx_conn_sup.erl index f21b163..31e3572 100644 --- a/zomp/lib/otpr-zx/0.1.0/src/zx_conn_sup.erl +++ b/zomp/lib/otpr-zx/0.1.0/src/zx_conn_sup.erl @@ -42,7 +42,7 @@ start_conn(Host, Serial) -> | {shutdown, term()} | term(). %% @private -%% Called by zx_daemon_sup. +%% Called by zx_sup. %% %% Spawns a single, registered supervisor process. %% diff --git a/zomp/lib/otpr-zx/0.1.0/src/zx_daemon_sup.erl b/zomp/lib/otpr-zx/0.1.0/src/zx_sup.erl similarity index 98% rename from zomp/lib/otpr-zx/0.1.0/src/zx_daemon_sup.erl rename to zomp/lib/otpr-zx/0.1.0/src/zx_sup.erl index 52f04f0..5f07fba 100644 --- a/zomp/lib/otpr-zx/0.1.0/src/zx_daemon_sup.erl +++ b/zomp/lib/otpr-zx/0.1.0/src/zx_sup.erl @@ -4,7 +4,7 @@ %%% This supervisor maintains the lifecycle of the zxd worker process. %%% @end --module(zx_daemon_sup). +-module(zx_sup). -behavior(supervisor). -author("Craig Everett "). -copyright("Craig Everett ").