X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Flib%2Flttng-ctl%2Flttng-ctl.c;h=ff39b88416e4d4410cd5af453a6e92baf4226a10;hp=8c52c456dd15bf63a0cee9797515d373246e5b24;hb=780d4bb8ec9b4fa0ffd6d1ba2a2aa5d2f812611f;hpb=3e3665b89947ebdd812bcfaca1090d22b34d5778 diff --git a/src/lib/lttng-ctl/lttng-ctl.c b/src/lib/lttng-ctl/lttng-ctl.c index 8c52c456d..ff39b8841 100644 --- a/src/lib/lttng-ctl/lttng-ctl.c +++ b/src/lib/lttng-ctl/lttng-ctl.c @@ -724,7 +724,7 @@ static int _lttng_stop_tracing(const char *session_name, int wait) * call returned value indicates availability. */ if (data_ret) { - usleep(DEFAULT_DATA_AVAILABILITY_WAIT_TIME); + usleep(DEFAULT_DATA_AVAILABILITY_WAIT_TIME_US); } } while (data_ret != 0); @@ -1831,7 +1831,7 @@ end: /* * Create a new session using name and url for destination. * - * Returns LTTNG_OK on success or a negative error code. + * Return 0 on success else a negative LTTng error code. */ int lttng_create_session(const char *name, const char *url) { @@ -1886,7 +1886,7 @@ end: /* * Create a session exclusively used for snapshot. * - * Returns LTTNG_OK on success or a negative error code. + * Return 0 on success else a negative LTTng error code. */ int lttng_create_session_snapshot(const char *name, const char *snapshot_url) { @@ -1962,7 +1962,7 @@ end: /* * Create a session exclusively used for live. * - * Returns LTTNG_OK on success or a negative error code. + * Return 0 on success else a negative LTTng error code. */ int lttng_create_session_live(const char *name, const char *url, unsigned int timer_interval) @@ -1996,6 +1996,8 @@ end: /* * Stop the session and wait for the data before destroying it + * + * Return 0 on success else a negative LTTng error code. */ int lttng_destroy_session(const char *session_name) { @@ -2032,7 +2034,7 @@ int lttng_destroy_session(const char *session_name) ret = -LTTNG_ERR_UNK; goto end; } - ret = ret_code == LTTNG_OK ? LTTNG_OK : -ret_code; + ret = ret_code == LTTNG_OK ? 0 : -ret_code; end: lttng_destruction_handle_destroy(handle); return ret;