Fix health check: signal parent before exit testpoint
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Thu, 23 Jan 2014 03:14:59 +0000 (22:14 -0500)
committerDavid Goulet <dgoulet@efficios.com>
Tue, 28 Jan 2014 21:20:44 +0000 (16:20 -0500)
We need to signal parent for readiness before hitting the thread exit
testpoint, otherwise we hang the test.

Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
src/bin/lttng-sessiond/main.c

index d6bca47d59db9bdc8b116a1f2df3dd6493e4979f..c05be0a91533797a088670af6b6ec52c00637154 100644 (file)
@@ -3693,10 +3693,6 @@ static void *thread_manage_clients(void *data)
 
        health_register(health_sessiond, HEALTH_SESSIOND_TYPE_CMD);
 
-       if (testpoint(sessiond_thread_manage_clients)) {
-               goto error_testpoint;
-       }
-
        health_code_update();
 
        ret = lttcomm_listen_unix_sock(client_sock);
@@ -3732,6 +3728,11 @@ static void *thread_manage_clients(void *data)
                kill(child_ppid, SIGUSR1);
        }
 
+       /* This testpoint is after we signal readiness to the parent. */
+       if (testpoint(sessiond_thread_manage_clients)) {
+               goto error;
+       }
+
        if (testpoint(sessiond_thread_manage_clients_before_loop)) {
                goto error;
        }
@@ -3907,7 +3908,6 @@ error:
 
 error_listen:
 error_create_poll:
-error_testpoint:
        unlink(client_unix_sock_path);
        if (client_sock >= 0) {
                ret = close(client_sock);
This page took 0.027373 seconds and 4 git commands to generate.