2 * SPDX-License-Identifier: MIT
4 * Copyright (C) 2013 Paul Woegerer <paul_woegerer@mentor.com>
5 * Copyright (C) 2015 Antoine Busque <abusque@efficios.com>
6 * Copyright (C) 2016 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9 #undef TRACEPOINT_PROVIDER
10 #define TRACEPOINT_PROVIDER lttng_ust_lib
12 #if !defined(_TRACEPOINT_UST_LIB_H) || defined(TRACEPOINT_HEADER_MULTI_READ)
13 #define _TRACEPOINT_UST_LIB_H
23 #define LTTNG_UST_LIB_PROVIDER
24 #include <lttng/tracepoint.h>
26 TRACEPOINT_EVENT(lttng_ust_lib
, load
,
27 TP_ARGS(void *, ip
, void *, baddr
, const char*, path
,
28 uint64_t, memsz
, uint8_t, has_build_id
,
29 uint8_t, has_debug_link
),
32 ctf_integer_hex(void *, baddr
, baddr
)
33 ctf_integer(uint64_t, memsz
, memsz
)
34 ctf_string(path
, path
)
35 ctf_integer(uint8_t, has_build_id
, has_build_id
)
36 ctf_integer(uint8_t, has_debug_link
, has_debug_link
)
40 TRACEPOINT_EVENT(lttng_ust_lib
, build_id
,
49 ctf_integer_hex(void *, baddr
, baddr
)
50 ctf_sequence_hex(uint8_t, build_id
, build_id
,
55 TRACEPOINT_EVENT(lttng_ust_lib
, debug_link
,
64 ctf_integer_hex(void *, baddr
, baddr
)
65 ctf_integer(uint32_t, crc
, crc
)
66 ctf_string(filename
, filename
)
70 TRACEPOINT_EVENT(lttng_ust_lib
, unload
,
71 TP_ARGS(void *, ip
, void *, baddr
),
74 ctf_integer_hex(void *, baddr
, baddr
)
78 #endif /* _TRACEPOINT_UST_LIB_H */
80 #undef TRACEPOINT_INCLUDE
81 #define TRACEPOINT_INCLUDE "./ust_lib.h"
83 /* This part must be outside ifdef protection */
84 #include <lttng/tracepoint-event.h>
This page took 0.030796 seconds and 4 git commands to generate.