[lttng-dev] [PATCH lttng-ust] Fix: Dump executable base-address with readlink

2014-02-25 Thread Paul Woegerer
The previous approach only worked if the traced executable was invoked via its fully qualified path. Using readlink to determine the full qualified path of the traced executable works reliably even when the traced executable is started via PATH lookup. Signed-off-by: Paul Woegerer --- liblttng-u

Re: [lttng-dev] [PATCH lttng-ust] Fix: Dump executable base-address with readlink

2014-02-25 Thread Mathieu Desnoyers
merged with small style updates. Thanks! Mathieu - Original Message - > From: "Paul Woegerer" > To: lttng-dev@lists.lttng.org, "mathieu desnoyers" > > Sent: Tuesday, February 25, 2014 4:47:00 AM > Subject: [PATCH lttng-ust] Fix: Dump executable base-address with readlink > > The prev

[lttng-dev] [PATCH lttng-tools 2/2] Add missing error message for lttcomm_return_code

2014-02-25 Thread Zifei Tong
Signed-off-by: Zifei Tong --- src/common/sessiond-comm/sessiond-comm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/sessiond-comm/sessiond-comm.c b/src/common/sessiond-comm/sessiond-comm.c index 65952b2..05483ff 100644 --- a/src/common/sessiond-comm/sessiond-comm.c +++ b/src/co

[lttng-dev] [PATCH lttng-tools 1/2] Fix: implicit conversion of enum types in consumer

2014-02-25 Thread Zifei Tong
Fix implicit conversions from enumeration type 'enum lttng_error_code' to enumeration type 'enum lttcomm_return_code' found by clang. Signed-off-by: Zifei Tong --- src/common/kernel-consumer/kernel-consumer.c | 12 ++-- src/common/ust-consumer/ust-consumer.c | 8 2 files

[lttng-dev] [lttng-tools][Patch] Fix format + PACKAGE_URL for dynamic printing

2014-02-25 Thread Jonathan Rajotte
--- src/bin/lttng/commands/version.c |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bin/lttng/commands/version.c b/src/bin/lttng/commands/version.c index bd88659..2b41b05 100644 --- a/src/bin/lttng/commands/version.c +++ b/src/bin/lttng/commands/version.c @@ -87,1

[lttng-dev] [PATCH lttng-ust v2] Fix: Unsynchronized access in LTTngTCPSessiondClient

2014-02-25 Thread Jérémie Galarneau
enabledEventList is shared between the LTTngThread and eventTimer threads but is not synchronized. This patch changes enabledEventList's type from an ArrayList to a synchronized HashSet. Signed-off-by: Jérémie Galarneau --- .../org/lttng/ust/jul/LTTngTCPSessiondClient.java | 129 --

Re: [lttng-dev] [lttng-tools][Patch] Fix format + PACKAGE_URL for dynamic printing

2014-02-25 Thread David Goulet
Merged! Thanks On 25 Feb (13:04:17), Jonathan Rajotte wrote: > --- > src/bin/lttng/commands/version.c |6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/src/bin/lttng/commands/version.c > b/src/bin/lttng/commands/version.c > index bd88659..2b41b05 100644 > --- a/s

[lttng-dev] The LTTng project accepted in the Google Summer of Code 2014

2014-02-25 Thread Christian Babeux
Hi lttng-pirates, The LTTng project has been officially accepted for its second year in the Google Summer of Code program [1]. In the upcoming weeks, prospective students will begin to interact with the LTTng community. Interested students can consult the LTTng project idea page on the Wiki [2].

Re: [lttng-dev] [PATCH lttng-ust v2] Fix: Unsynchronized access in LTTngTCPSessiondClient

2014-02-25 Thread Mathieu Desnoyers
merged, thanks! Mathieu - Original Message - > From: "Jérémie Galarneau" > To: lttng-dev@lists.lttng.org > Sent: Tuesday, February 25, 2014 4:32:05 PM > Subject: [lttng-dev] [PATCH lttng-ust v2] Fix: Unsynchronized access in > LTTngTCPSessiondClient > > enabledEventList is shared