All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: liblttng-ust-cyg-profile.so not found
@ 2014-01-29 14:26 Thibault, Daniel
  0 siblings, 0 replies; 8+ messages in thread
From: Thibault, Daniel @ 2014-01-29 14:26 UTC (permalink / raw)
  To: lttng-dev; +Cc: Shariyar

----------------------------------------------------------------------
Date: Tue, 28 Jan 2014 11:37:20 -0500
From: Shariyar <syed.shariyar@gmail.com>

> I am trying to collect function entry and exit points in a trace. I  have followed the instructions written on the following man page:
> http://manpages.ubuntu.com/manpages/trusty/man3/lttng-ust-cyg-profile.3.html.
>
> In my system, UST tracepoint tracing  is working fine and I am able to collect traces with the statically typed tracepoints in the code.
> However, there is no liblttng-ust-cyg-profile.so in my system and I get an error when I execute the following:
>
>      *LD_PRELOAD=liblttng-ust-cyg-profile.so* appname
------------------------------
Date: Tue, 28 Jan 2014 12:29:43 -0500
From: Suchakrapani Datt Sharma <suchakrapani.sharma@polymtl.ca>

> Check if the liblttng-ust-cyg-profile.so is present in system using 'locate'. On my system its in /usr/lib64
> Then give the absolute path -
>*LD_PRELOAD=/usr/lib64/liblttng-ust-cyg-profile.so* appname
------------------------------
Date: Tue, 28 Jan 2014 12:32:14 -0500
From: Shariyar <syed.shariyar@gmail.com>

> It is not present in the system even after reinstalling ust libs from PPA.
> I am working on Ubuntu 12.04.1 LTS, 64 bit.
------------------------------
Date: Tue, 28 Jan 2014 12:45:34 -0500
From: Alexandre Montplaisir <alexmonthy@voxpopuli.im>

> On Ubuntu/Debian, there is no "lib64", it's /usr/lib/x86_64-linux-gnu/
>
> If you installed UST from the distro package, it should be at:
> /usr/lib/x86_64-linux-gnu/liblttng-ust-cyg-profile.so.0
>
> (the .so symlink is only installed by the -dev package)
>
> If you installed from source, it would be at:
> /usr/local/lib/liblttng-ust-cyg-profile.so
>
> Quick tip: you can use:
> dpkg -L liblttng-ust0
> to list the files installed by a package.
------------------------------
Date: Tue, 28 Jan 2014 16:19:09 -0500
From: Shariyar <syed.shariyar@gmail.com>

> dpkg -L liblttng-ust0 gives the following; i.e., no liblttng-ust-cyg-profile.so
>
> /usr/share/man/man3/lttng-ust-cyg-profile.3.gz

   Which package did you install, and whence came it?

Daniel U. Thibault
Protection des systèmes et contremesures (PSC) | Systems Protection & Countermeasures (SPC)
Cyber sécurité pour les missions essentielles (CME) | Mission Critical Cyber Security (MCCS)
R & D pour la défense Canada - Valcartier (RDDC Valcartier) | Defence R&D Canada - Valcartier (DRDC Valcartier)
2459 route de la Bravoure
Québec QC  G3J 1X5
CANADA
Vox : (418) 844-4000 x4245
Fax : (418) 844-4538
NAC : 918V QSDJ <http://www.travelgis.com/map.asp?addr=918V%20QSDJ>
Gouvernement du Canada | Government of Canada
<http://www.valcartier.drdc-rddc.gc.ca/>

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: liblttng-ust-cyg-profile.so not found
       [not found] <48CF5AC71E61DB46B70D0F388054EFFD267DD6EB@VAL-E-02.valcartier.drdc-rddc.gc.ca>
@ 2014-01-29 18:17 ` Shariyar
  0 siblings, 0 replies; 8+ messages in thread
From: Shariyar @ 2014-01-29 18:17 UTC (permalink / raw)
  To: Thibault, Daniel; +Cc: lttng-dev


[-- Attachment #1.1: Type: text/plain, Size: 3357 bytes --]

Download and install the following UST packages but first remove the
already installed versions. For other LTTng packages, you can   reinstall
from your previous repository or from here.

http://packages.debian.org/sid/liblttng-ust-ctl2
http://packages.debian.org/sid/liblttng-ust0
http://packages.debian.org/unstable/liblttng-ust-dev


On Wed, Jan 29, 2014 at 9:26 AM, Thibault, Daniel <
Daniel.Thibault@drdc-rddc.gc.ca> wrote:

> ----------------------------------------------------------------------
> Date: Tue, 28 Jan 2014 11:37:20 -0500
> From: Shariyar <syed.shariyar@gmail.com>
>
> > I am trying to collect function entry and exit points in a trace. I
>  have followed the instructions written on the following man page:
> >
> http://manpages.ubuntu.com/manpages/trusty/man3/lttng-ust-cyg-profile.3.html
> .
> >
> > In my system, UST tracepoint tracing  is working fine and I am able to
> collect traces with the statically typed tracepoints in the code.
> > However, there is no liblttng-ust-cyg-profile.so in my system and I get
> an error when I execute the following:
> >
> >      *LD_PRELOAD=liblttng-ust-cyg-profile.so* appname
> ------------------------------
> Date: Tue, 28 Jan 2014 12:29:43 -0500
> From: Suchakrapani Datt Sharma <suchakrapani.sharma@polymtl.ca>
>
> > Check if the liblttng-ust-cyg-profile.so is present in system using
> 'locate'. On my system its in /usr/lib64
> > Then give the absolute path -
> >*LD_PRELOAD=/usr/lib64/liblttng-ust-cyg-profile.so* appname
> ------------------------------
> Date: Tue, 28 Jan 2014 12:32:14 -0500
> From: Shariyar <syed.shariyar@gmail.com>
>
> > It is not present in the system even after reinstalling ust libs from
> PPA.
> > I am working on Ubuntu 12.04.1 LTS, 64 bit.
> ------------------------------
> Date: Tue, 28 Jan 2014 12:45:34 -0500
> From: Alexandre Montplaisir <alexmonthy@voxpopuli.im>
>
> > On Ubuntu/Debian, there is no "lib64", it's /usr/lib/x86_64-linux-gnu/
> >
> > If you installed UST from the distro package, it should be at:
> > /usr/lib/x86_64-linux-gnu/liblttng-ust-cyg-profile.so.0
> >
> > (the .so symlink is only installed by the -dev package)
> >
> > If you installed from source, it would be at:
> > /usr/local/lib/liblttng-ust-cyg-profile.so
> >
> > Quick tip: you can use:
> > dpkg -L liblttng-ust0
> > to list the files installed by a package.
> ------------------------------
> Date: Tue, 28 Jan 2014 16:19:09 -0500
> From: Shariyar <syed.shariyar@gmail.com>
>
> > dpkg -L liblttng-ust0 gives the following; i.e., no
> liblttng-ust-cyg-profile.so
> >
> > /usr/share/man/man3/lttng-ust-cyg-profile.3.gz
>
>    Which package did you install, and whence came it?
>
> Daniel U. Thibault
> Protection des systèmes et contremesures (PSC) | Systems Protection &
> Countermeasures (SPC)
> Cyber sécurité pour les missions essentielles (CME) | Mission Critical
> Cyber Security (MCCS)
> R & D pour la défense Canada - Valcartier (RDDC Valcartier) | Defence R&D
> Canada - Valcartier (DRDC Valcartier)
> 2459 route de la Bravoure
> Québec QC  G3J 1X5
> CANADA
> Vox : (418) 844-4000 x4245
> Fax : (418) 844-4538
> NAC : 918V QSDJ <http://www.travelgis.com/map.asp?addr=918V%20QSDJ>
> Gouvernement du Canada | Government of Canada
> <http://www.valcartier.drdc-rddc.gc.ca/>
>

[-- Attachment #1.2: Type: text/html, Size: 4851 bytes --]

[-- Attachment #2: Type: text/plain, Size: 155 bytes --]

_______________________________________________
lttng-dev mailing list
lttng-dev@lists.lttng.org
http://lists.lttng.org/cgi-bin/mailman/listinfo/lttng-dev

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: liblttng-ust-cyg-profile.so not found
       [not found]       ` <CAKQh6phn84uoHbEhjkY-m=FQrahTNDOfYA0zLJvpn+C=6QpDsw@mail.gmail.com>
@ 2014-01-28 22:25         ` Shariyar
  0 siblings, 0 replies; 8+ messages in thread
From: Shariyar @ 2014-01-28 22:25 UTC (permalink / raw)
  To: lttng-dev


[-- Attachment #1.1: Type: text/plain, Size: 3535 bytes --]

Okay. I have found the solution: I used another Debain repository to
download and install all the packages.

I am wondering, is there any tool/script that matches function addresses
with the symbol names from nm, and generates a new CTF file?

Regards,
Shariyar


On Tue, Jan 28, 2014 at 4:19 PM, Shariyar <syed.shariyar@gmail.com> wrote:

>
>  dpkg -L liblttng-ust0 gives the following; i.e., no
> liblttng-ust-cyg-profile.so
>
> /.
> /usr
> /usr/share
> /usr/share/doc
> /usr/share/doc/liblttng-ust0
> /usr/share/doc/liblttng-ust0/changelog.gz
> /usr/share/doc/liblttng-ust0/copyright
> /usr/share/man
> /usr/share/man/man3
> /usr/share/man/man3/lttng-ust.3.gz
> /usr/share/man/man3/lttng-ust-cyg-profile.3.gz
> /usr/lib
> /usr/lib/x86_64-linux-gnu
> /usr/lib/x86_64-linux-gnu/liblttng-ust-tracepoint.so.0.0.0
> /usr/lib/x86_64-linux-gnu/liblttng-ust-fork.so.0.0.0
> /usr/lib/x86_64-linux-gnu/liblttng-ust.so.0.0.0
> /usr/lib/x86_64-linux-gnu/liblttng-ust-libc-wrapper.so.0.0.0
> /usr/lib/x86_64-linux-gnu/liblttng-ust-ctl.so.2.0.0
> /usr/lib/x86_64-linux-gnu/liblttng-ust.so.0
> /usr/lib/x86_64-linux-gnu/liblttng-ust-tracepoint.so.0
> /usr/lib/x86_64-linux-gnu/liblttng-ust-libc-wrapper.so.0
> /usr/lib/x86_64-linux-gnu/liblttng-ust-fork.so.0
> /usr/lib/x86_64-linux-gnu/liblttng-ust-ctl.so.2
>
>
>
> On Tue, Jan 28, 2014 at 12:45 PM, Alexandre Montplaisir <
> alexmonthy@voxpopuli.im> wrote:
>
>> On Ubuntu/Debian, there is no "lib64", it's /usr/lib/x86_64-linux-gnu/
>>
>> If you installed UST from the distro package, it should be at:
>> /usr/lib/x86_64-linux-gnu/liblttng-ust-cyg-profile.so.0
>>
>> (the .so symlink is only installed by the -dev package)
>>
>> If you installed from source, it would be at:
>> /usr/local/lib/liblttng-ust-cyg-profile.so
>>
>>
>> Quick tip: you can use:
>>  dpkg -L liblttng-ust0
>> to list the files installed by a package.
>>
>>
>> Cheers,
>> Alexandre
>>
>>
>> On 14-01-28 12:32 PM, Shariyar wrote:
>> > It is not present in the system even after reinstalling ust libs from
>> PPA.
>> > I am working on Ubuntu 12.04.1 LTS, 64 bit.
>> >
>> > Regards,
>> > Shariyar
>> >
>> >
>> > On Tue, Jan 28, 2014 at 12:29 PM, Suchakrapani Datt Sharma <
>> > suchakrapani.sharma@polymtl.ca> wrote:
>> >
>> >> Check if the liblttng-ust-cyg-profile.so is present in system using
>> >> 'locate'. On
>> >> my system its in /usr/lib64
>> >>
>> >> Then give the absolute path -
>> >>
>> >> *LD_PRELOAD=/usr/lib64/liblttng-ust-cyg-profile.so* appname
>> >>
>> >> This works for me.
>> >>
>> >> --
>> >> Suchakra
>> >>
>> >> Quoting Shariyar <syed.shariyar@gmail.com>:
>> >>
>> >>> Hi,
>> >>>
>> >>> I am trying to collect function entry and exit points in a trace. I
>>  have
>> >>> followed the instructions written on the following man page:
>> >>>
>> >>
>> http://manpages.ubuntu.com/manpages/trusty/man3/lttng-ust-cyg-profile.3.html
>> >> .
>> >>>
>> >>> In my system, UST tracepoint tracing  is working fine and I am able to
>> >>> collect traces with the statically typed tracepoints in the code.
>> >> However,
>> >>> there is no liblttng-ust-cyg-profile.so in my system and I get an
>> error
>> >>> when I execute the following:
>> >>>
>> >>>        *LD_PRELOAD=liblttng-ust-cyg-profile.so* appname
>> >>>
>> >>> Please let me know how to get it to work?
>> >>>
>> >>> Thanks,
>> >>> Shariyar
>> >>>
>> >>
>> >>
>> >
>> >
>> > _______________________________________________
>> > lttng-dev mailing list
>> > lttng-dev@lists.lttng.org
>> > http://lists.lttng.org/cgi-bin/mailman/listinfo/lttng-dev
>>
>>
>

[-- Attachment #1.2: Type: text/html, Size: 5189 bytes --]

[-- Attachment #2: Type: text/plain, Size: 155 bytes --]

_______________________________________________
lttng-dev mailing list
lttng-dev@lists.lttng.org
http://lists.lttng.org/cgi-bin/mailman/listinfo/lttng-dev

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: liblttng-ust-cyg-profile.so not found
       [not found]     ` <52E7ECBE.8050300@voxpopuli.im>
@ 2014-01-28 21:19       ` Shariyar
       [not found]       ` <CAKQh6phn84uoHbEhjkY-m=FQrahTNDOfYA0zLJvpn+C=6QpDsw@mail.gmail.com>
  1 sibling, 0 replies; 8+ messages in thread
From: Shariyar @ 2014-01-28 21:19 UTC (permalink / raw)
  To: Alexandre Montplaisir; +Cc: lttng-dev


[-- Attachment #1.1: Type: text/plain, Size: 3049 bytes --]

 dpkg -L liblttng-ust0 gives the following; i.e., no
liblttng-ust-cyg-profile.so

/.
/usr
/usr/share
/usr/share/doc
/usr/share/doc/liblttng-ust0
/usr/share/doc/liblttng-ust0/changelog.gz
/usr/share/doc/liblttng-ust0/copyright
/usr/share/man
/usr/share/man/man3
/usr/share/man/man3/lttng-ust.3.gz
/usr/share/man/man3/lttng-ust-cyg-profile.3.gz
/usr/lib
/usr/lib/x86_64-linux-gnu
/usr/lib/x86_64-linux-gnu/liblttng-ust-tracepoint.so.0.0.0
/usr/lib/x86_64-linux-gnu/liblttng-ust-fork.so.0.0.0
/usr/lib/x86_64-linux-gnu/liblttng-ust.so.0.0.0
/usr/lib/x86_64-linux-gnu/liblttng-ust-libc-wrapper.so.0.0.0
/usr/lib/x86_64-linux-gnu/liblttng-ust-ctl.so.2.0.0
/usr/lib/x86_64-linux-gnu/liblttng-ust.so.0
/usr/lib/x86_64-linux-gnu/liblttng-ust-tracepoint.so.0
/usr/lib/x86_64-linux-gnu/liblttng-ust-libc-wrapper.so.0
/usr/lib/x86_64-linux-gnu/liblttng-ust-fork.so.0
/usr/lib/x86_64-linux-gnu/liblttng-ust-ctl.so.2



On Tue, Jan 28, 2014 at 12:45 PM, Alexandre Montplaisir <
alexmonthy@voxpopuli.im> wrote:

> On Ubuntu/Debian, there is no "lib64", it's /usr/lib/x86_64-linux-gnu/
>
> If you installed UST from the distro package, it should be at:
> /usr/lib/x86_64-linux-gnu/liblttng-ust-cyg-profile.so.0
>
> (the .so symlink is only installed by the -dev package)
>
> If you installed from source, it would be at:
> /usr/local/lib/liblttng-ust-cyg-profile.so
>
>
> Quick tip: you can use:
>  dpkg -L liblttng-ust0
> to list the files installed by a package.
>
>
> Cheers,
> Alexandre
>
>
> On 14-01-28 12:32 PM, Shariyar wrote:
> > It is not present in the system even after reinstalling ust libs from
> PPA.
> > I am working on Ubuntu 12.04.1 LTS, 64 bit.
> >
> > Regards,
> > Shariyar
> >
> >
> > On Tue, Jan 28, 2014 at 12:29 PM, Suchakrapani Datt Sharma <
> > suchakrapani.sharma@polymtl.ca> wrote:
> >
> >> Check if the liblttng-ust-cyg-profile.so is present in system using
> >> 'locate'. On
> >> my system its in /usr/lib64
> >>
> >> Then give the absolute path -
> >>
> >> *LD_PRELOAD=/usr/lib64/liblttng-ust-cyg-profile.so* appname
> >>
> >> This works for me.
> >>
> >> --
> >> Suchakra
> >>
> >> Quoting Shariyar <syed.shariyar@gmail.com>:
> >>
> >>> Hi,
> >>>
> >>> I am trying to collect function entry and exit points in a trace. I
>  have
> >>> followed the instructions written on the following man page:
> >>>
> >>
> http://manpages.ubuntu.com/manpages/trusty/man3/lttng-ust-cyg-profile.3.html
> >> .
> >>>
> >>> In my system, UST tracepoint tracing  is working fine and I am able to
> >>> collect traces with the statically typed tracepoints in the code.
> >> However,
> >>> there is no liblttng-ust-cyg-profile.so in my system and I get an error
> >>> when I execute the following:
> >>>
> >>>        *LD_PRELOAD=liblttng-ust-cyg-profile.so* appname
> >>>
> >>> Please let me know how to get it to work?
> >>>
> >>> Thanks,
> >>> Shariyar
> >>>
> >>
> >>
> >
> >
> > _______________________________________________
> > lttng-dev mailing list
> > lttng-dev@lists.lttng.org
> > http://lists.lttng.org/cgi-bin/mailman/listinfo/lttng-dev
>
>

[-- Attachment #1.2: Type: text/html, Size: 4408 bytes --]

[-- Attachment #2: Type: text/plain, Size: 155 bytes --]

_______________________________________________
lttng-dev mailing list
lttng-dev@lists.lttng.org
http://lists.lttng.org/cgi-bin/mailman/listinfo/lttng-dev

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: liblttng-ust-cyg-profile.so not found
       [not found]   ` <CAKQh6pgwetoHcw3fxRHqHcvEZOVcYFmia_xivgAH+YPO3ZxzkA@mail.gmail.com>
@ 2014-01-28 17:45     ` Alexandre Montplaisir
       [not found]     ` <52E7ECBE.8050300@voxpopuli.im>
  1 sibling, 0 replies; 8+ messages in thread
From: Alexandre Montplaisir @ 2014-01-28 17:45 UTC (permalink / raw)
  To: Shariyar; +Cc: lttng-dev

On Ubuntu/Debian, there is no "lib64", it's /usr/lib/x86_64-linux-gnu/

If you installed UST from the distro package, it should be at:
/usr/lib/x86_64-linux-gnu/liblttng-ust-cyg-profile.so.0

(the .so symlink is only installed by the -dev package)

If you installed from source, it would be at:
/usr/local/lib/liblttng-ust-cyg-profile.so


Quick tip: you can use:
 dpkg -L liblttng-ust0
to list the files installed by a package.


Cheers,
Alexandre


On 14-01-28 12:32 PM, Shariyar wrote:
> It is not present in the system even after reinstalling ust libs from PPA.
> I am working on Ubuntu 12.04.1 LTS, 64 bit.
>
> Regards,
> Shariyar
>
>
> On Tue, Jan 28, 2014 at 12:29 PM, Suchakrapani Datt Sharma <
> suchakrapani.sharma@polymtl.ca> wrote:
>
>> Check if the liblttng-ust-cyg-profile.so is present in system using
>> 'locate'. On
>> my system its in /usr/lib64
>>
>> Then give the absolute path -
>>
>> *LD_PRELOAD=/usr/lib64/liblttng-ust-cyg-profile.so* appname
>>
>> This works for me.
>>
>> --
>> Suchakra
>>
>> Quoting Shariyar <syed.shariyar@gmail.com>:
>>
>>> Hi,
>>>
>>> I am trying to collect function entry and exit points in a trace. I  have
>>> followed the instructions written on the following man page:
>>>
>> http://manpages.ubuntu.com/manpages/trusty/man3/lttng-ust-cyg-profile.3.html
>> .
>>>
>>> In my system, UST tracepoint tracing  is working fine and I am able to
>>> collect traces with the statically typed tracepoints in the code.
>> However,
>>> there is no liblttng-ust-cyg-profile.so in my system and I get an error
>>> when I execute the following:
>>>
>>>        *LD_PRELOAD=liblttng-ust-cyg-profile.so* appname
>>>
>>> Please let me know how to get it to work?
>>>
>>> Thanks,
>>> Shariyar
>>>
>>
>>
>
>
> _______________________________________________
> lttng-dev mailing list
> lttng-dev@lists.lttng.org
> http://lists.lttng.org/cgi-bin/mailman/listinfo/lttng-dev

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: liblttng-ust-cyg-profile.so not found
       [not found] ` <1390930183.52e7e90758145@www.imp.polymtl.ca>
@ 2014-01-28 17:32   ` Shariyar
       [not found]   ` <CAKQh6pgwetoHcw3fxRHqHcvEZOVcYFmia_xivgAH+YPO3ZxzkA@mail.gmail.com>
  1 sibling, 0 replies; 8+ messages in thread
From: Shariyar @ 2014-01-28 17:32 UTC (permalink / raw)
  To: lttng-dev


[-- Attachment #1.1: Type: text/plain, Size: 1214 bytes --]

It is not present in the system even after reinstalling ust libs from PPA.
I am working on Ubuntu 12.04.1 LTS, 64 bit.

Regards,
Shariyar


On Tue, Jan 28, 2014 at 12:29 PM, Suchakrapani Datt Sharma <
suchakrapani.sharma@polymtl.ca> wrote:

> Check if the liblttng-ust-cyg-profile.so is present in system using
> 'locate'. On
> my system its in /usr/lib64
>
> Then give the absolute path -
>
> *LD_PRELOAD=/usr/lib64/liblttng-ust-cyg-profile.so* appname
>
> This works for me.
>
> --
> Suchakra
>
> Quoting Shariyar <syed.shariyar@gmail.com>:
>
> > Hi,
> >
> > I am trying to collect function entry and exit points in a trace. I  have
> > followed the instructions written on the following man page:
> >
> http://manpages.ubuntu.com/manpages/trusty/man3/lttng-ust-cyg-profile.3.html
> .
> >
> >
> > In my system, UST tracepoint tracing  is working fine and I am able to
> > collect traces with the statically typed tracepoints in the code.
> However,
> > there is no liblttng-ust-cyg-profile.so in my system and I get an error
> > when I execute the following:
> >
> >        *LD_PRELOAD=liblttng-ust-cyg-profile.so* appname
> >
> > Please let me know how to get it to work?
> >
> > Thanks,
> > Shariyar
> >
>
>
>

[-- Attachment #1.2: Type: text/html, Size: 1919 bytes --]

[-- Attachment #2: Type: text/plain, Size: 155 bytes --]

_______________________________________________
lttng-dev mailing list
lttng-dev@lists.lttng.org
http://lists.lttng.org/cgi-bin/mailman/listinfo/lttng-dev

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: liblttng-ust-cyg-profile.so not found
       [not found] <CAKQh6pgjuidy=KzKNQx1hropC_A8Nvdsk4AX2S0j2CHXCP8ihw@mail.gmail.com>
@ 2014-01-28 17:29 ` Suchakrapani Datt Sharma
       [not found] ` <1390930183.52e7e90758145@www.imp.polymtl.ca>
  1 sibling, 0 replies; 8+ messages in thread
From: Suchakrapani Datt Sharma @ 2014-01-28 17:29 UTC (permalink / raw)
  To: Shariyar; +Cc: lttng-dev

Check if the liblttng-ust-cyg-profile.so is present in system using 'locate'. On
my system its in /usr/lib64

Then give the absolute path -

*LD_PRELOAD=/usr/lib64/liblttng-ust-cyg-profile.so* appname

This works for me.

--
Suchakra

Quoting Shariyar <syed.shariyar@gmail.com>:

> Hi,
>
> I am trying to collect function entry and exit points in a trace. I  have
> followed the instructions written on the following man page:
> http://manpages.ubuntu.com/manpages/trusty/man3/lttng-ust-cyg-profile.3.html.
>
>
> In my system, UST tracepoint tracing  is working fine and I am able to
> collect traces with the statically typed tracepoints in the code. However,
> there is no liblttng-ust-cyg-profile.so in my system and I get an error
> when I execute the following:
>
>        *LD_PRELOAD=liblttng-ust-cyg-profile.so* appname
>
> Please let me know how to get it to work?
>
> Thanks,
> Shariyar
>

^ permalink raw reply	[flat|nested] 8+ messages in thread

* liblttng-ust-cyg-profile.so not found
@ 2014-01-28 16:37 Shariyar
  0 siblings, 0 replies; 8+ messages in thread
From: Shariyar @ 2014-01-28 16:37 UTC (permalink / raw)
  To: lttng-dev


[-- Attachment #1.1: Type: text/plain, Size: 586 bytes --]

Hi,

I am trying to collect function entry and exit points in a trace. I  have
followed the instructions written on the following man page:
http://manpages.ubuntu.com/manpages/trusty/man3/lttng-ust-cyg-profile.3.html.


In my system, UST tracepoint tracing  is working fine and I am able to
collect traces with the statically typed tracepoints in the code. However,
there is no liblttng-ust-cyg-profile.so in my system and I get an error
when I execute the following:

       *LD_PRELOAD=liblttng-ust-cyg-profile.so* appname

Please let me know how to get it to work?

Thanks,
Shariyar

[-- Attachment #1.2: Type: text/html, Size: 788 bytes --]

[-- Attachment #2: Type: text/plain, Size: 155 bytes --]

_______________________________________________
lttng-dev mailing list
lttng-dev@lists.lttng.org
http://lists.lttng.org/cgi-bin/mailman/listinfo/lttng-dev

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2014-01-29 18:17 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-01-29 14:26 liblttng-ust-cyg-profile.so not found Thibault, Daniel
     [not found] <48CF5AC71E61DB46B70D0F388054EFFD267DD6EB@VAL-E-02.valcartier.drdc-rddc.gc.ca>
2014-01-29 18:17 ` Shariyar
     [not found] <CAKQh6pgjuidy=KzKNQx1hropC_A8Nvdsk4AX2S0j2CHXCP8ihw@mail.gmail.com>
2014-01-28 17:29 ` Suchakrapani Datt Sharma
     [not found] ` <1390930183.52e7e90758145@www.imp.polymtl.ca>
2014-01-28 17:32   ` Shariyar
     [not found]   ` <CAKQh6pgwetoHcw3fxRHqHcvEZOVcYFmia_xivgAH+YPO3ZxzkA@mail.gmail.com>
2014-01-28 17:45     ` Alexandre Montplaisir
     [not found]     ` <52E7ECBE.8050300@voxpopuli.im>
2014-01-28 21:19       ` Shariyar
     [not found]       ` <CAKQh6phn84uoHbEhjkY-m=FQrahTNDOfYA0zLJvpn+C=6QpDsw@mail.gmail.com>
2014-01-28 22:25         ` Shariyar
  -- strict thread matches above, loose matches on Subject: below --
2014-01-28 16:37 Shariyar

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.