[lttng-dev] [PATCH lttng-ust] Fix: include config.h to resolve HAVE_DLMOPEN

2017-02-21 Thread Jonathan Rajotte
Fixes commit 42330adcefcd1830dad89e2a960c93d8dd1da125 Signed-off-by: Jonathan Rajotte --- liblttng-ust-dl/ust_dl.h | 1 + 1 file changed, 1 insertion(+) diff --git a/liblttng-ust-dl/ust_dl.h b/liblttng-ust-dl/ust_dl.h index afa8e84..c8a0695 100644 ---

Re: [lttng-dev] [PATCH lttng-ust] Validate the presence of dlmopen at configure time

2017-02-21 Thread Mathieu Desnoyers
merged into master and stable-2.9, thanks! Mathieu - On Feb 21, 2017, at 4:00 PM, Jonathan Rajotte jonathan.rajotte-jul...@efficios.com wrote: > Signed-off-by: Michael Jeanson > Signed-off-by: Jonathan Rajotte > --- >

[lttng-dev] [PATCH lttng-ust] Validate the presence of dlmopen at configure time

2017-02-21 Thread Jonathan Rajotte
Signed-off-by: Michael Jeanson Signed-off-by: Jonathan Rajotte --- configure.ac | 8 liblttng-ust-dl/lttng-ust-dl.c | 8 liblttng-ust-dl/ust_dl.h | 2 ++ 3 files changed, 18 insertions(+)

[lttng-dev] [PATCH babeltrace] Set the minimum Python version to 3.0

2017-02-21 Thread Francis Deslauriers
To be applied on Babeltrace v1.5 Signed-off-by: Francis Deslauriers --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index fd80fd9..7d9b66e 100644 --- a/configure.ac +++ b/configure.ac @@ -239,7

[lttng-dev] [PATCH babeltrace v2] Build Python bindings with distutils for consistent installs

2017-02-21 Thread Francis Deslauriers
This patch changes the build system used to compile and install the Python Bindings. Distutils is used to find the right install directory. When the install directory generated from the install prefix is not in the Python search path (PYTHON_PATH), we print a warning explaining what can be done to

Re: [lttng-dev] [RFC PATCH lttng-ust 2/2] dl instrumentation: add dlmopen event, trace dlopen flags

2017-02-21 Thread Jonathan Rajotte-Julien
On Tue, Feb 21, 2017 at 02:40:28PM +, Mathieu Desnoyers wrote: > - On Feb 21, 2017, at 9:19 AM, Thomas Petazzoni > thomas.petazz...@free-electrons.com wrote: > > > Hello, > > > > On Tue, 21 Feb 2017 14:08:08 + (UTC), Mathieu Desnoyers wrote: > > > >> My expectation is that the

Re: [lttng-dev] [RFC PATCH lttng-ust 2/2] dl instrumentation: add dlmopen event, trace dlopen flags

2017-02-21 Thread Mathieu Desnoyers
- On Feb 21, 2017, at 9:19 AM, Thomas Petazzoni thomas.petazz...@free-electrons.com wrote: > Hello, > > On Tue, 21 Feb 2017 14:08:08 + (UTC), Mathieu Desnoyers wrote: > >> My expectation is that the dlmopen override symbol gets generated, >> but it is never invoked in builds where the

Re: [lttng-dev] [RFC PATCH lttng-ust 2/2] dl instrumentation: add dlmopen event, trace dlopen flags

2017-02-21 Thread Thomas Petazzoni
Hello, On Tue, 21 Feb 2017 14:08:08 + (UTC), Mathieu Desnoyers wrote: > My expectation is that the dlmopen override symbol gets generated, > but it is never invoked in builds where the libc does not implement > it, so we never have to look it up dynamically through dlsym(). The main issue

Re: [lttng-dev] [RFC PATCH lttng-ust 2/2] dl instrumentation: add dlmopen event, trace dlopen flags

2017-02-21 Thread Mathieu Desnoyers
- On Feb 21, 2017, at 4:03 AM, Thomas Petazzoni thomas.petazz...@free-electrons.com wrote: > Hello, > > On Mon, 4 Jul 2016 18:53:48 -0400, Mathieu Desnoyers wrote: >> Add missing dlmopen(3) instrumentation, and add the "flags" field to >> dlopen instrumentation. >> >> Link:

Re: [lttng-dev] [RFC PATCH lttng-ust 2/2] dl instrumentation: add dlmopen event, trace dlopen flags

2017-02-21 Thread Thomas Petazzoni
Hello, On Mon, 4 Jul 2016 18:53:48 -0400, Mathieu Desnoyers wrote: > Add missing dlmopen(3) instrumentation, and add the "flags" field to > dlopen instrumentation. > > Link: http://man7.org/linux/man-pages/man3/dlopen.3.html > Signed-off-by: Mathieu Desnoyers