X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng-relayd%2Ftracefile-array.cpp;h=91baa74aa9f6e0248db2e61ffd236e8069af63b0;hp=73a2887941517275c4a860e89f71dab92585f3c8;hb=HEAD;hpb=64803277bbdbe0a943360d918298a48157d9da55 diff --git a/src/bin/lttng-relayd/tracefile-array.cpp b/src/bin/lttng-relayd/tracefile-array.cpp index 73a288794..91baa74aa 100644 --- a/src/bin/lttng-relayd/tracefile-array.cpp +++ b/src/bin/lttng-relayd/tracefile-array.cpp @@ -6,15 +6,15 @@ */ #define _LGPL_SOURCE +#include "tracefile-array.hpp" + #include -#include #include - -#include "tracefile-array.hpp" +#include struct tracefile_array *tracefile_array_create(size_t count) { - struct tracefile_array *tfa = NULL; + struct tracefile_array *tfa = nullptr; int i; tfa = zmalloc(); @@ -39,7 +39,7 @@ error: free(tfa->tf); } free(tfa); - return NULL; + return nullptr; } void tracefile_array_destroy(struct tracefile_array *tfa) @@ -67,8 +67,7 @@ void tracefile_array_reset(struct tracefile_array *tfa) tfa->file_tail = 0; } -void tracefile_array_file_rotate(struct tracefile_array *tfa, - enum tracefile_rotate_type type) +void tracefile_array_file_rotate(struct tracefile_array *tfa, enum tracefile_rotate_type type) { uint64_t *headp, *tailp; @@ -109,8 +108,7 @@ void tracefile_array_file_rotate(struct tracefile_array *tfa, } } -void tracefile_array_commit_seq(struct tracefile_array *tfa, - uint64_t new_seq_head) +void tracefile_array_commit_seq(struct tracefile_array *tfa, uint64_t new_seq_head) { uint64_t *headp, *tailp; @@ -157,8 +155,7 @@ uint64_t tracefile_array_get_seq_tail(struct tracefile_array *tfa) return tfa->seq_tail; } -bool tracefile_array_seq_in_file(struct tracefile_array *tfa, - uint64_t file_index, uint64_t seq) +bool tracefile_array_seq_in_file(struct tracefile_array *tfa, uint64_t file_index, uint64_t seq) { if (!tfa->count) { /* @@ -171,10 +168,5 @@ bool tracefile_array_seq_in_file(struct tracefile_array *tfa, if (seq == -1ULL) { return false; } - if (seq >= tfa->tf[file_index].seq_tail - && seq <= tfa->tf[file_index].seq_head) { - return true; - } else { - return false; - } + return seq >= tfa->tf[file_index].seq_tail && seq <= tfa->tf[file_index].seq_head; }