summaryrefslogtreecommitdiffstats
path: root/src/core/ephraim.erl
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2010-10-02 03:23:17 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2010-10-02 03:23:17 +0200
commit2b99ed6fd9cf84c405f426ea0914b233b1f40ef1 (patch)
treeafa943f5058179204c855f42f14021be5d0816fb /src/core/ephraim.erl
parent15725caf30a564d33868bf2dccb2c98ea5eb34eb (diff)
downloadephraim-2b99ed6fd9cf84c405f426ea0914b233b1f40ef1.tar
ephraim-2b99ed6fd9cf84c405f426ea0914b233b1f40ef1.zip
Replaced ephraim_config code by gen_server behaviour
Diffstat (limited to 'src/core/ephraim.erl')
-rw-r--r--src/core/ephraim.erl7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/core/ephraim.erl b/src/core/ephraim.erl
index c59be72..61387a5 100644
--- a/src/core/ephraim.erl
+++ b/src/core/ephraim.erl
@@ -24,12 +24,7 @@ stop() ->
init() ->
register(ephraim, self()),
- Config = spawn(ephraim_config, init, []),
- % Wait for config process
- receive
- {Config, started} ->
- io:format("Reading config file...~n")
- end,
+ ephraim_config:start_link(),
GUI = spawn(ephraim_gui, init, []),
Conn = spawn(ephraim_conn, init, []),