Clean-up: liblttng-ctl destruction handle: change space to tabs
authorJérémie Galarneau <jeremie.galarneau@efficios.com>
Tue, 11 Aug 2020 16:22:19 +0000 (12:22 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Tue, 11 Aug 2020 16:23:15 +0000 (12:23 -0400)
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
Change-Id: Ie5d8f2fc1e2ad358b287550065f24f8928c8304c

src/lib/lttng-ctl/destruction-handle.c

index b345c2834315f28bdaef0c0ddf6a4c129794b908..aeeece7e316abad31884c5498667b1fb09f60f3c 100644 (file)
@@ -56,8 +56,8 @@ void lttng_destruction_handle_destroy(struct lttng_destruction_handle *handle)
                if (ret) {
                        PERROR("Failed to close lttng-sessiond command socket");
                }
-        }
-        lttng_poll_clean(&handle->communication.events);
+       }
+       lttng_poll_clean(&handle->communication.events);
        lttng_dynamic_buffer_reset(&handle->communication.buffer);
        lttng_trace_archive_location_destroy(handle->location);
        free(handle);
@@ -82,9 +82,9 @@ struct lttng_destruction_handle *lttng_destruction_handle_create(
 
        ret = lttng_poll_add(&handle->communication.events, sessiond_socket,
                        LPOLLIN | LPOLLHUP | LPOLLRDHUP | LPOLLERR);
-        if (ret) {
+       if (ret) {
                goto error;
-        }
+       }
 
        handle->communication.bytes_left_to_receive =
                        sizeof(struct lttcomm_lttng_msg);
@@ -231,39 +231,39 @@ lttng_destruction_handle_wait_for_completion(
        enum lttng_destruction_handle_status status;
        unsigned long time_left_ms = 0;
        const bool has_timeout = timeout_ms > 0;
-        struct timespec initial_time;
+       struct timespec initial_time;
 
        if (!handle) {
                status = LTTNG_DESTRUCTION_HANDLE_STATUS_INVALID;
                goto end;
        }
 
-        if (handle->communication.state == COMMUNICATION_STATE_ERROR) {
+       if (handle->communication.state == COMMUNICATION_STATE_ERROR) {
                status = LTTNG_DESTRUCTION_HANDLE_STATUS_ERROR;
                goto end;
        } else if (handle->communication.state == COMMUNICATION_STATE_END) {
                status = LTTNG_DESTRUCTION_HANDLE_STATUS_COMPLETED;
                goto end;
        }
-        if (has_timeout) {
+       if (has_timeout) {
                ret = lttng_clock_gettime(CLOCK_MONOTONIC, &initial_time);
                if (ret) {
                        status = LTTNG_DESTRUCTION_HANDLE_STATUS_ERROR;
                        goto end;
                }
                time_left_ms = (unsigned long) timeout_ms;
-        }
+       }
 
-        while (handle->communication.state != COMMUNICATION_STATE_END &&
+       while (handle->communication.state != COMMUNICATION_STATE_END &&
                        (time_left_ms || !has_timeout)) {
                int ret;
                uint32_t revents;
-                struct timespec current_time, diff;
+               struct timespec current_time, diff;
                unsigned long diff_ms;
 
-                ret = lttng_poll_wait(&handle->communication.events,
+               ret = lttng_poll_wait(&handle->communication.events,
                                has_timeout ? time_left_ms : -1);
-                if (ret == 0) {
+               if (ret == 0) {
                        /* timeout */
                        break;
                } else if (ret < 0) {
@@ -388,7 +388,7 @@ enum lttng_error_code lttng_destroy_session_ext(const char *session_name,
        int ret;
        ssize_t comm_ret;
        enum lttng_error_code ret_code = LTTNG_OK;
-        struct lttcomm_session_msg lsm = {
+       struct lttcomm_session_msg lsm = {
                .cmd_type = LTTNG_DESTROY_SESSION,
        };
        int sessiond_socket = -1;
This page took 0.026667 seconds and 4 git commands to generate.