X-Git-Url: https://git.efficios.com/?a=blobdiff_plain;f=include%2Flttng%2Fevent-rule%2Fkprobe-internal.h;fp=include%2Flttng%2Fevent-rule%2Fkprobe-internal.h;h=0000000000000000000000000000000000000000;hb=c3e68e71e0bca1c067bf24447163ac6850a9b09e;hp=7d2ecc8ccb6b8b5f99d7e5627a32cde4c07fdaa6;hpb=11f6ce94d8fb73f017888681aaba5d7df55fc735;p=deliverable%2Flttng-tools.git diff --git a/include/lttng/event-rule/kprobe-internal.h b/include/lttng/event-rule/kprobe-internal.h deleted file mode 100644 index 7d2ecc8cc..000000000 --- a/include/lttng/event-rule/kprobe-internal.h +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright (C) 2019 Jonathan Rajotte - * - * SPDX-License-Identifier: LGPL-2.1-only - * - */ - -#ifndef LTTNG_EVENT_RULE_KPROBE_INTERNAL_H -#define LTTNG_EVENT_RULE_KPROBE_INTERNAL_H - -#include -#include -#include -#include - -struct lttng_event_rule_kprobe { - struct lttng_event_rule parent; - char *name; - struct lttng_kernel_probe_location *location; -}; - -struct lttng_event_rule_kprobe_comm { - /* Includes terminator `\0`. */ - uint32_t name_len; - uint32_t location_len; - /* - * Payload is composed of, in that order: - * - name (null terminated), - * - kernel probe location object. - */ - char payload[]; -} LTTNG_PACKED; - -LTTNG_HIDDEN -ssize_t lttng_event_rule_kprobe_create_from_payload( - struct lttng_payload_view *payload, - struct lttng_event_rule **rule); - -#endif /* LTTNG_EVENT_RULE_KPROBE_INTERNAL_H */