summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2014-12-01 11:29:52 +0100
committerAndreas Baumann <mail@andreasbaumann.cc>2014-12-01 11:29:52 +0100
commit39572126c20624c50ec8b0c0f2b08995ac435f51 (patch)
tree8561090ce3b045f70b0af279e5597f46b7da1b4f
parentf234454dc08b6ba997d51d18e3129969c4e618ab (diff)
downloadbiruda-39572126c20624c50ec8b0c0f2b08995ac435f51.tar.gz
biruda-39572126c20624c50ec8b0c0f2b08995ac435f51.tar.bz2
..
-rw-r--r--BUGS5
-rw-r--r--src/worker.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/BUGS b/BUGS
index 94eb217..bcf220c 100644
--- a/BUGS
+++ b/BUGS
@@ -1,3 +1,7 @@
+- synchronized logger output
+
+- Windows termination
+
^CUnexpected state: state=3 source=-2 action=1 (src/core/sock.c:943)
Abort (core dumped)
@@ -6,3 +10,4 @@ while terminating a master + coordinator in one daemon
Windows says the same R6010 in nn_recv received -1
seems to be a nn_term race in the FSM.
+
diff --git a/src/worker.c b/src/worker.c
index a7554a4..0ef9106 100644
--- a/src/worker.c
+++ b/src/worker.c
@@ -95,7 +95,9 @@ static void *worker_func( void *thread_data )
worker->state = WORKER_STATE_RUNNING;
+ printf( "worker %s: entering glib worker main loop..", worker->name );
g_main_loop_run( wed->main_loop );
+ printf( "worker %s: leaving glib worker main loop..", worker->name );
worker->state = WORKER_STATE_STOPPED;