X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;ds=inline;f=include%2Flttng%2Fcondition%2Fevaluation-internal.h;fp=include%2Flttng%2Fcondition%2Fevaluation-internal.h;h=0000000000000000000000000000000000000000;hb=c9e313bc594f40a86eed237dce222c0fc99c957f;hp=12ea104d8c59ab855e746ea1b7d2673a865d317f;hpb=4878de5c7deb512bbdac4fdfc498907efa06fb7c;p=lttng-tools.git diff --git a/include/lttng/condition/evaluation-internal.h b/include/lttng/condition/evaluation-internal.h deleted file mode 100644 index 12ea104d8..000000000 --- a/include/lttng/condition/evaluation-internal.h +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Copyright (C) 2017 Jérémie Galarneau - * - * SPDX-License-Identifier: LGPL-2.1-only - * - */ - -#ifndef LTTNG_EVALUATION_INTERNAL_H -#define LTTNG_EVALUATION_INTERNAL_H - -#include -#include -#include -#include -#include - -struct lttng_payload; -struct lttng_payload_view; - -typedef void (*evaluation_destroy_cb)(struct lttng_evaluation *evaluation); -typedef int (*evaluation_serialize_cb)( - const struct lttng_evaluation *evaluation, - struct lttng_payload *payload); - -struct lttng_evaluation_comm { - /* enum lttng_condition_type type */ - int8_t type; - char payload[]; -} LTTNG_PACKED; - -struct lttng_evaluation { - enum lttng_condition_type type; - evaluation_serialize_cb serialize; - evaluation_destroy_cb destroy; -}; - -void lttng_evaluation_init(struct lttng_evaluation *evaluation, - enum lttng_condition_type type); - -ssize_t lttng_evaluation_create_from_payload( - const struct lttng_condition *condition, - struct lttng_payload_view *view, - struct lttng_evaluation **evaluation); - -int lttng_evaluation_serialize(const struct lttng_evaluation *evaluation, - struct lttng_payload *payload); - -#endif /* LTTNG_EVALUATION_INTERNAL_H */