API refactoring: introduce probe context
[lttng-ust.git] / src / lib / lttng-ust / lttng-tracer-core.h
1 /*
2 * SPDX-License-Identifier: LGPL-2.1-only
3 *
4 * Copyright (C) 2005-2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 *
6 * This contains the core definitions for the Linux Trace Toolkit.
7 */
8
9 #ifndef _LTTNG_TRACER_CORE_H
10 #define _LTTNG_TRACER_CORE_H
11
12 #include <stddef.h>
13 #include <urcu/arch.h>
14 #include <urcu/list.h>
15 #include <lttng/ust-tracer.h>
16 #include <lttng/ust-ringbuffer-context.h>
17 #include "common/logging.h"
18
19 struct lttng_ust_session;
20 struct lttng_ust_channel_buffer;
21 struct lttng_ust_ctx_field;
22 struct lttng_ust_ring_buffer_ctx;
23 struct lttng_ust_ctx_value;
24 struct lttng_ust_event_recorder;
25 struct lttng_ust_event_notifier;
26 struct lttng_ust_notification_ctx;
27
28 int ust_lock(void) __attribute__ ((warn_unused_result))
29 __attribute__((visibility("hidden")));
30
31 void ust_lock_nocheck(void)
32 __attribute__((visibility("hidden")));
33
34 void ust_unlock(void)
35 __attribute__((visibility("hidden")));
36
37 void lttng_ust_fixup_tls(void)
38 __attribute__((visibility("hidden")));
39
40 void lttng_fixup_event_tls(void)
41 __attribute__((visibility("hidden")));
42
43 void lttng_fixup_vtid_tls(void)
44 __attribute__((visibility("hidden")));
45
46 void lttng_fixup_procname_tls(void)
47 __attribute__((visibility("hidden")));
48
49 void lttng_fixup_cgroup_ns_tls(void)
50 __attribute__((visibility("hidden")));
51
52 void lttng_fixup_ipc_ns_tls(void)
53 __attribute__((visibility("hidden")));
54
55 void lttng_fixup_net_ns_tls(void)
56 __attribute__((visibility("hidden")));
57
58 void lttng_fixup_time_ns_tls(void)
59 __attribute__((visibility("hidden")));
60
61 void lttng_fixup_uts_ns_tls(void)
62 __attribute__((visibility("hidden")));
63
64 const char *lttng_ust_obj_get_name(int id)
65 __attribute__((visibility("hidden")));
66
67 int lttng_get_notify_socket(void *owner)
68 __attribute__((visibility("hidden")));
69
70 char* lttng_ust_sockinfo_get_procname(void *owner)
71 __attribute__((visibility("hidden")));
72
73 void lttng_ust_sockinfo_session_enabled(void *owner)
74 __attribute__((visibility("hidden")));
75
76 size_t lttng_ust_dummy_get_size(void *priv, struct lttng_ust_probe_ctx *probe_ctx,
77 size_t offset)
78 __attribute__((visibility("hidden")));
79
80 void lttng_ust_dummy_record(void *priv, struct lttng_ust_probe_ctx *probe_ctx,
81 struct lttng_ust_ring_buffer_ctx *ctx,
82 struct lttng_ust_channel_buffer *chan)
83 __attribute__((visibility("hidden")));
84
85 void lttng_ust_dummy_get_value(void *priv, struct lttng_ust_probe_ctx *probe_ctx,
86 struct lttng_ust_ctx_value *value)
87 __attribute__((visibility("hidden")));
88
89 void lttng_event_notifier_notification_send(
90 const struct lttng_ust_event_notifier *event_notifier,
91 const char *stack_data,
92 struct lttng_ust_probe_ctx *probe_ctx,
93 struct lttng_ust_notification_ctx *notif_ctx)
94 __attribute__((visibility("hidden")));
95
96 struct lttng_counter_transport *lttng_counter_transport_find(const char *name)
97 __attribute__((visibility("hidden")));
98
99 void lttng_counter_transport_register(struct lttng_counter_transport *transport)
100 __attribute__((visibility("hidden")));
101
102 void lttng_counter_transport_unregister(struct lttng_counter_transport *transport)
103 __attribute__((visibility("hidden")));
104
105 #ifdef HAVE_LINUX_PERF_EVENT_H
106 void lttng_ust_fixup_perf_counter_tls(void)
107 __attribute__((visibility("hidden")));
108
109 void lttng_perf_lock(void)
110 __attribute__((visibility("hidden")));
111
112 void lttng_perf_unlock(void)
113 __attribute__((visibility("hidden")));
114 #else /* #ifdef HAVE_LINUX_PERF_EVENT_H */
115 static inline
116 void lttng_ust_fixup_perf_counter_tls(void)
117 {
118 }
119 static inline
120 void lttng_perf_lock(void)
121 {
122 }
123 static inline
124 void lttng_perf_unlock(void)
125 {
126 }
127 #endif /* #else #ifdef HAVE_LINUX_PERF_EVENT_H */
128
129 #endif /* _LTTNG_TRACER_CORE_H */
This page took 0.033655 seconds and 4 git commands to generate.