X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=include%2Flttng%2Fevent-rule%2Fkernel-uprobe-internal.h;fp=include%2Flttng%2Fevent-rule%2Fkernel-uprobe-internal.h;h=0000000000000000000000000000000000000000;hp=d8ce5579338bda532f3b0f6c37c2b97b4e8631f5;hb=c9e313bc594f40a86eed237dce222c0fc99c957f;hpb=4878de5c7deb512bbdac4fdfc498907efa06fb7c diff --git a/include/lttng/event-rule/kernel-uprobe-internal.h b/include/lttng/event-rule/kernel-uprobe-internal.h deleted file mode 100644 index d8ce55793..000000000 --- a/include/lttng/event-rule/kernel-uprobe-internal.h +++ /dev/null @@ -1,43 +0,0 @@ -/* - * Copyright (C) 2019 Jonathan Rajotte - * - * SPDX-License-Identifier: LGPL-2.1-only - * - */ - -#ifndef LTTNG_EVENT_RULE_KERNEL_UPROBE_INTERNAL_H -#define LTTNG_EVENT_RULE_KERNEL_UPROBE_INTERNAL_H - -#include -#include -#include -#include - -struct lttng_event_rule_kernel_uprobe { - struct lttng_event_rule parent; - char *name; - struct lttng_userspace_probe_location *location; -}; - -struct lttng_event_rule_kernel_uprobe_comm { - /* Includes terminator `\0`. */ - uint32_t name_len; - /* Includes terminator `\0`. */ - uint32_t location_len; - /* - * Payload is composed of, in that order: - * - name (null terminated), - * - user space probe location object. - */ - char payload[]; -} LTTNG_PACKED; - -ssize_t lttng_event_rule_kernel_uprobe_create_from_payload( - struct lttng_payload_view *view, - struct lttng_event_rule **rule); - -struct lttng_userspace_probe_location * -lttng_event_rule_kernel_uprobe_get_location_mutable( - const struct lttng_event_rule *rule); - -#endif /* LTTNG_EVENT_RULE_KERNEL_UPROBE_INTERNAL_H */