Fix: lttng perf counter deadlock
[lttng-ust.git] / liblttng-ust / lttng-tracer-core.h
CommitLineData
7dd08bec
MD
1#ifndef _LTTNG_TRACER_CORE_H
2#define _LTTNG_TRACER_CORE_H
4fbf9cd1
MD
3
4/*
5 * Copyright (C) 2005-2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6 *
7 * This contains the core definitions for the Linux Trace Toolkit.
8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; version 2.1 of
12 * the License.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 */
23
b728d87e
MD
24#include <stdint.h>
25#include <stddef.h>
26#include <urcu/arch.h>
4fbf9cd1 27#include <urcu/list.h>
44c72f10
MD
28#include <lttng/ust-tracer.h>
29#include <lttng/bug.h>
4318ae1b 30#include <lttng/ringbuffer-config.h>
44c72f10 31#include <usterr-signal-safe.h>
4fbf9cd1 32
7dd08bec
MD
33struct lttng_session;
34struct lttng_channel;
35struct lttng_event;
ce7352a2
MD
36struct lttng_ctx_field;
37struct lttng_ust_lib_ring_buffer_ctx;
38struct lttng_ctx_value;
4fbf9cd1 39
3327ac33
MD
40int ust_lock(void) __attribute__ ((warn_unused_result));
41void ust_lock_nocheck(void);
17dfb34b 42void ust_unlock(void);
8165c8da 43
eddd8d5d 44void lttng_fixup_event_tls(void);
4158a15a 45void lttng_fixup_vtid_tls(void);
009745db 46void lttng_fixup_procname_tls(void);
eddd8d5d 47
74d81a6c
MD
48const char *lttng_ust_obj_get_name(int id);
49
32ce8569
MD
50int lttng_get_notify_socket(void *owner);
51
246be17e 52void lttng_ust_sockinfo_session_enabled(void *owner);
95c25348 53
79f3848b
MD
54void lttng_ust_malloc_wrapper_init(void);
55
405be658
MD
56ssize_t lttng_ust_read(int fd, void *buf, size_t len);
57
ce7352a2
MD
58size_t lttng_ust_dummy_get_size(struct lttng_ctx_field *field, size_t offset);
59void lttng_ust_dummy_record(struct lttng_ctx_field *field,
60 struct lttng_ust_lib_ring_buffer_ctx *ctx,
61 struct lttng_channel *chan);
62void lttng_ust_dummy_get_value(struct lttng_ctx_field *field,
63 struct lttng_ctx_value *value);
64int lttng_context_is_app(const char *name);
c362addf 65void lttng_ust_fixup_tls(void);
ce7352a2 66
20142124
MD
67#ifdef LTTNG_UST_HAVE_PERF_EVENT
68void lttng_ust_fixup_perf_counter_tls(void);
69void lttng_perf_lock(void);
70void lttng_perf_unlock(void);
71#else /* #ifdef LTTNG_UST_HAVE_PERF_EVENT */
72static inline
73void lttng_ust_fixup_perf_counter_tls(void)
74{
75}
76static inline
77void lttng_perf_lock(void)
78{
79}
80static inline
81void lttng_perf_unlock(void)
82{
83}
84#endif /* #else #ifdef LTTNG_UST_HAVE_PERF_EVENT */
85
7dd08bec 86#endif /* _LTTNG_TRACER_CORE_H */
This page took 0.034718 seconds and 4 git commands to generate.