6b159b4c09378f6c44c35250f4208457452da451
[ust.git] / include / ust / tracepoint-internal.h
1 #ifndef _UST_TRACEPOINT_INTERNAL_H
2 #define _UST_TRACEPOINT_INTERNAL_H
3
4 /*
5 * tracepoint-internal.h
6 *
7 * Tracepoint internal header.
8 *
9 * Copyright (C) 2008 Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
10 * Copyright (C) 2009 Pierre-Marc Fournier
11 * Copyright (C) 2009 Steven Rostedt <rostedt@goodmis.org>
12 *
13 * This library is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU Lesser General Public
15 * License as published by the Free Software Foundation;
16 * version 2.1 of the License.
17 *
18 * This library is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 * Lesser General Public License for more details.
22 *
23 * You should have received a copy of the GNU Lesser General Public
24 * License along with this library; if not, write to the Free Software
25 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
26 *
27 * Heavily inspired from the Linux Kernel Markers.
28 *
29 * Ported to userspace by Pierre-Marc Fournier.
30 */
31
32 #include <urcu-bp.h>
33 #include <ust/core.h>
34 #include <urcu/list.h>
35 #include <ust/tracepoint.h>
36
37 extern int tracepoint_probe_register_noupdate(const char *name, void *probe,
38 void *data);
39 extern int tracepoint_probe_unregister_noupdate(const char *name, void *probe,
40 void *data);
41 extern void tracepoint_probe_update_all(void);
42
43 struct tracepoint_iter {
44 struct tracepoint_lib *lib;
45 struct tracepoint * const *tracepoint;
46 };
47
48 extern void tracepoint_iter_start(struct tracepoint_iter *iter);
49 extern void tracepoint_iter_next(struct tracepoint_iter *iter);
50 extern void tracepoint_iter_stop(struct tracepoint_iter *iter);
51 extern void tracepoint_iter_reset(struct tracepoint_iter *iter);
52 extern int tracepoint_get_iter_range(struct tracepoint * const **tracepoint,
53 struct tracepoint * const *begin, struct tracepoint * const *end);
54
55 /*
56 * tracepoint_synchronize_unregister must be called between the last tracepoint
57 * probe unregistration and the end of module exit to make sure there is no
58 * caller executing a probe when it is freed.
59 */
60 static inline void tracepoint_synchronize_unregister(void)
61 {
62 synchronize_rcu();
63 }
64
65 extern void lock_trace_events(void);
66 extern void unlock_trace_events(void);
67
68 struct trace_event_iter {
69 struct trace_event_lib *lib;
70 struct trace_event * const *trace_event;
71 };
72
73 extern void trace_event_iter_start(struct trace_event_iter *iter);
74 extern void trace_event_iter_next(struct trace_event_iter *iter);
75 extern void trace_event_iter_reset(struct trace_event_iter *iter);
76
77 extern int trace_event_get_iter_range(struct trace_event * const **trace_event,
78 struct trace_event * const *begin,
79 struct trace_event * const *end);
80
81 extern void trace_event_update_process(void);
82 extern int is_trace_event_enabled(const char *channel, const char *name);
83
84 extern void init_tracepoint(void);
85
86 #endif /* _UST_TRACEPOINT_INTERNAL_H */
This page took 0.030833 seconds and 3 git commands to generate.