sessiond-comm: prefix lttcomm_sessiond_command entries
[lttng-tools.git] / src / lib / lttng-ctl / destruction-handle.cpp
index 0bfa303d804392107b612893cf50117a88c13bb6..04cbd92a59c4aa71862b6398abc3de52210e13ca 100644 (file)
@@ -8,16 +8,16 @@
 #include <lttng/destruction-handle.h>
 #include <lttng/rotation.h>
 
-#include <common/optional.h>
-#include <common/compat/poll.h>
-#include <common/compat/time.h>
-#include <common/macros.h>
-#include <common/compat/poll.h>
-#include <common/dynamic-buffer.h>
-#include <common/buffer-view.h>
-#include <common/sessiond-comm/sessiond-comm.h>
-#include <lttng/location-internal.h>
-#include "lttng-ctl-helper.h"
+#include <common/optional.hpp>
+#include <common/compat/poll.hpp>
+#include <common/compat/time.hpp>
+#include <common/macros.hpp>
+#include <common/compat/poll.hpp>
+#include <common/dynamic-buffer.hpp>
+#include <common/buffer-view.hpp>
+#include <common/sessiond-comm/sessiond-comm.hpp>
+#include <lttng/location-internal.hpp>
+#include "lttng-ctl-helper.hpp"
 
 #include <algorithm>
 #include <stdbool.h>
@@ -69,7 +69,7 @@ struct lttng_destruction_handle *lttng_destruction_handle_create(
                int sessiond_socket)
 {
        int ret;
-       struct lttng_destruction_handle *handle = (lttng_destruction_handle *) zmalloc(sizeof(*handle));
+       struct lttng_destruction_handle *handle = zmalloc<lttng_destruction_handle>();
 
        if (!handle) {
                goto end;
@@ -390,7 +390,7 @@ enum lttng_error_code lttng_destroy_session_ext(const char *session_name,
        ssize_t comm_ret;
        enum lttng_error_code ret_code = LTTNG_OK;
        struct lttcomm_session_msg lsm = {
-               .cmd_type = LTTNG_DESTROY_SESSION,
+               .cmd_type = LTTCOMM_SESSIOND_COMMAND_DESTROY_SESSION,
                .session = {},
                .domain = {},
                .u = {},
This page took 0.02512 seconds and 4 git commands to generate.