X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=lttng-sessiond%2Fmain.c;h=cc7885399c288a24cabf2c10dd9e431b6b0778de;hp=f13571ab37159fc00d9aac331444eab9cb68db42;hb=421cb6011479aad4a37260e2e496c353a89318c0;hpb=487cf67c6435255ab3ede6dd8cd7678b8b4d1981 diff --git a/lttng-sessiond/main.c b/lttng-sessiond/main.c index f13571ab3..cc7885399 100644 --- a/lttng-sessiond/main.c +++ b/lttng-sessiond/main.c @@ -338,12 +338,6 @@ static void cleanup(void) DBG("Cleaning up"); - /* */ - MSG("%c[%d;%dm*** assert failed *** ==> %c[%dm%c[%d;%dm" - "Matthew, BEET driven development works!%c[%dm", - 27, 1, 31, 27, 0, 27, 1, 33, 27, 0); - /* */ - if (is_root) { DBG("Removing %s directory", LTTNG_RUNDIR); ret = asprintf(&cmd, "rm -rf " LTTNG_RUNDIR); @@ -388,6 +382,12 @@ static void cleanup(void) close(thread_quit_pipe[0]); close(thread_quit_pipe[1]); + + /* */ + MSG("%c[%d;%dm*** assert failed :-) *** ==> %c[%dm%c[%d;%dm" + "Matthew, BEET driven development works!%c[%dm", + 27, 1, 31, 27, 0, 27, 1, 33, 27, 0); + /* */ } /* @@ -720,7 +720,9 @@ static void update_ust_app(int app_sock) /* For all tracing session(s) */ cds_list_for_each_entry_safe(sess, stmp, &session_list_ptr->head, list) { - ust_app_global_update(sess->ust_session, app_sock); + if (sess->ust_session) { + ust_app_global_update(sess->ust_session, app_sock); + } } } @@ -1718,6 +1720,7 @@ static int create_ust_session(struct ltt_session *session, /* No ustctl for the global UST domain */ break; default: + ERR("Unknown UST domain on create session %d", domain->type); goto error; } session->ust_session = lus; @@ -1982,7 +1985,8 @@ static int cmd_enable_channel(struct ltt_session *session, goto error; } - ret = ust_app_add_channel(usess, uchan); + /* Add channel to all registered applications */ + ret = ust_app_add_channel_all(usess, uchan); if (ret != LTTCOMM_OK) { goto error; } @@ -2242,7 +2246,7 @@ static int cmd_enable_event(struct ltt_session *session, int domain, } } - ret = ust_app_add_event(usess, uchan, uevent); + ret = ust_app_add_event_all(usess, uchan, uevent); if (ret < 0) { ret = LTTCOMM_UST_ENABLE_FAIL; goto error; @@ -2433,7 +2437,10 @@ static int cmd_start_trace(struct ltt_session *session) kernel_wait_quiescent(kernel_tracer_fd); } - ret = ust_app_start_trace(usess); + /* Flag session that trace should start automatically */ + usess->start_trace = 1; + + ret = ust_app_start_trace_all(usess); if (ret < 0) { ret = LTTCOMM_UST_START_FAIL; goto error;