Clean-up: sessiond: rename public accessors
[lttng-tools.git] / src / bin / lttng-sessiond / snapshot.cpp
index 727dc5db8967bad758a7ac11ed4d6611967cb2d7..e0ffe69c0b1a5303cebfe908ab99cee7eb2220d1 100644 (file)
 #include <string.h>
 #include <urcu/uatomic.h>
 
-#include <common/defaults.h>
+#include <common/defaults.hpp>
 
-#include "snapshot.h"
-#include "utils.h"
+#include "snapshot.hpp"
+#include "utils.hpp"
 
 /*
  * Return the atomically incremented value of next_output_id.
@@ -165,7 +165,7 @@ error:
 
 struct snapshot_output *snapshot_output_alloc(void)
 {
-       return (snapshot_output *) zmalloc(sizeof(struct snapshot_output));
+       return zmalloc<snapshot_output>();
 }
 
 /*
@@ -276,7 +276,7 @@ struct snapshot_output *snapshot_find_output_by_id(uint32_t id,
                DBG3("Snapshot output not found with id %" PRId32, id);
                goto error;
        }
-       output = caa_container_of(node, struct snapshot_output, node);
+       output = lttng::utils::container_of(node, &snapshot_output::node);
 
 error:
        return output;
This page took 0.02334 seconds and 4 git commands to generate.