Fix: trace events in C++ constructors/destructors
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Thu, 16 Feb 2023 19:25:16 +0000 (14:25 -0500)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Fri, 17 Feb 2023 21:06:11 +0000 (16:06 -0500)
commitf8d4203387f7c85af6a0e77404fd9ebf5622909f
tree660a4321f1149ad9ecd8a4030e53687662e592eb
parent551e27943b31f7c12aebadd64f6b5f3a498bd6a3
Fix: trace events in C++ constructors/destructors

Wrap constructor and destructor functions to invoke them as functions with
the constructor/destructor GNU C attributes, which ensures that those
constructors/destructors are ordered before/after C++
constructors/destructors.

Wrap constructor and destructor functions as the constructor/destructor of a
variable defined within an anonymous namespace when building as C++ with
LTTNG_UST_ALLOCATE_COMPOUND_LITERAL_ON_HEAP defined. With this option,
there are no guarantees that the events in C++ constructors/destructors will
be traced.

Fixes: 05bfa3dc3a6e ("Fix: generate probe registration constructor as a C++ constuctor")
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Change-Id: If058b15af6b4d8852fa29d0a21b8233bcb4b43a2
include/lttng/ust-compiler.h
This page took 0.024933 seconds and 4 git commands to generate.