X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=include%2Flttng%2Fcondition%2Fbuffer-usage-internal.h;fp=include%2Flttng%2Fcondition%2Fbuffer-usage-internal.h;h=0000000000000000000000000000000000000000;hp=1e6d5a509c40b8c518dc90e634c0cc76322dd0bc;hb=c9e313bc594f40a86eed237dce222c0fc99c957f;hpb=4878de5c7deb512bbdac4fdfc498907efa06fb7c diff --git a/include/lttng/condition/buffer-usage-internal.h b/include/lttng/condition/buffer-usage-internal.h deleted file mode 100644 index 1e6d5a509..000000000 --- a/include/lttng/condition/buffer-usage-internal.h +++ /dev/null @@ -1,80 +0,0 @@ -/* - * Copyright (C) 2017 Jérémie Galarneau - * - * SPDX-License-Identifier: LGPL-2.1-only - * - */ - -#ifndef LTTNG_CONDITION_BUFFER_USAGE_INTERNAL_H -#define LTTNG_CONDITION_BUFFER_USAGE_INTERNAL_H - -#include -#include -#include -#include -#include "common/buffer-view.h" -#include - -struct lttng_condition_buffer_usage { - struct lttng_condition parent; - struct { - bool set; - uint64_t value; - } threshold_bytes; - struct { - bool set; - double value; - } threshold_ratio; - char *session_name; - char *channel_name; - struct { - bool set; - enum lttng_domain_type type; - } domain; -}; - -struct lttng_condition_buffer_usage_comm { - uint8_t threshold_set_in_bytes; - uint64_t threshold_bytes; - double threshold_ratio; - /* Both lengths include the trailing \0. */ - uint32_t session_name_len; - uint32_t channel_name_len; - /* enum lttng_domain_type */ - int8_t domain_type; - /* session and channel names. */ - char names[]; -} LTTNG_PACKED; - -struct lttng_evaluation_buffer_usage { - struct lttng_evaluation parent; - uint64_t buffer_use; - uint64_t buffer_capacity; -}; - -struct lttng_evaluation_buffer_usage_comm { - uint64_t buffer_use; - uint64_t buffer_capacity; -} LTTNG_PACKED; - -struct lttng_evaluation *lttng_evaluation_buffer_usage_create( - enum lttng_condition_type type, uint64_t use, - uint64_t capacity); - -ssize_t lttng_condition_buffer_usage_low_create_from_payload( - struct lttng_payload_view *view, - struct lttng_condition **condition); - -ssize_t lttng_condition_buffer_usage_high_create_from_payload( - struct lttng_payload_view *view, - struct lttng_condition **condition); - -ssize_t lttng_evaluation_buffer_usage_low_create_from_payload( - struct lttng_payload_view *view, - struct lttng_evaluation **evaluation); - -ssize_t lttng_evaluation_buffer_usage_high_create_from_payload( - struct lttng_payload_view *view, - struct lttng_evaluation **evaluation); - -#endif /* LTTNG_CONDITION_BUFFER_USAGE_INTERNAL_H */