X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=include%2Flttng%2Fevent-rule%2Fuprobe-internal.h;fp=include%2Flttng%2Fevent-rule%2Fuprobe-internal.h;h=0000000000000000000000000000000000000000;hp=41d42eb763fe128986e1bdf2ab48075fc080471d;hb=e957bf98e634c79b13281d0a2fe144be0245d310;hpb=1f1567a534b09badcbe6f6c10a4693e9fddb62dc diff --git a/include/lttng/event-rule/uprobe-internal.h b/include/lttng/event-rule/uprobe-internal.h deleted file mode 100644 index 41d42eb76..000000000 --- a/include/lttng/event-rule/uprobe-internal.h +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Copyright (C) 2019 Jonathan Rajotte - * - * SPDX-License-Identifier: LGPL-2.1-only - * - */ - -#ifndef LTTNG_EVENT_RULE_USERSPACE_PROBE_INTERNAL_H -#define LTTNG_EVENT_RULE_USERSPACE_PROBE_INTERNAL_H - -#include -#include -#include -#include - -struct lttng_event_rule_userspace_probe { - struct lttng_event_rule parent; - char *name; - struct lttng_userspace_probe_location *location; -}; - -struct lttng_event_rule_userspace_probe_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; - -LTTNG_HIDDEN -ssize_t lttng_event_rule_userspace_probe_create_from_payload( - struct lttng_payload_view *view, - struct lttng_event_rule **rule); - -LTTNG_HIDDEN -struct lttng_userspace_probe_location * -lttng_event_rule_userspace_probe_get_location_mutable( - const struct lttng_event_rule *rule); - -#endif /* LTTNG_EVENT_RULE_USERSPACE_PROBE_INTERNAL_H */