summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;