Displaying 20 results from an estimated 2000 matches similar to: "Fwd: DTrace & libtool "best practices""
2008 Sep 16
3
USDT probes in both static library and application
Hi All,
I''ve got a problem when I have USDT probes in a static library and in
the application code outside of the library.
I build the static library containing some USDT probes, glomming
everything together (ld -r) before creating the .a file to preserve the
probe symbols. This all works fine.
I build an application which also has some USDT probes.
When I build the application which
2007 Sep 01
1
Hekp dtrace -l is bleeding Unstable implementation details all over my USDT probe namespace :(
Hi,
As I''ve discussed before whenever we add USDT probes to a C++ function
and call dtrace -l we get the mangled C++ name for the dtrace function,
being listed :(
Now the point of USDT probes is to abstract a higher level semantic
construct for users to make use of. Surely it is not meant to be listing
Unstable Interfaces (implementation details), such as the containing C++
2006 Oct 31
0
6370454 dtrace should support USDT probes in static functions
Author: ahl
Repository: /hg/zfs-crypto/gate
Revision: b1ab97f77b0ad2a4fe2a43d9c5aac7259840bb90
Log message:
6370454 dtrace should support USDT probes in static functions
Files:
update: usr/src/lib/libdtrace/common/dt_dof.c
update: usr/src/lib/libdtrace/common/dt_link.c
update: usr/src/lib/libdtrace/common/dt_provider.c
update: usr/src/lib/libdtrace/common/dt_provider.h
2007 Oct 29
2
autoconf test for building dtrace USDT probes?
X.Org has adopted GNU autoconf as its build configuration mechanism,
so when I integrated the dtrace probes, I checked to see if they
should be built using this test, checking for the existence of a
program named "dtrace" in the path:
dnl Check for dtrace program (needed to build Xserver dtrace probes)
AC_ARG_WITH(dtrace, AS_HELP_STRING([--with-dtrace=PATH],
[Enable dtrace
2008 Nov 24
1
DTrace helper interface''s deprecated ioctls
Hi,
Is there a specific reason the DTRACEHIOC_REMOVE ioctl is deprecated?
I found I needed to use it in my Perl USDT provider code[*], which
creates providers dynamically at runtime. I wonder if I''m missing a
better way of doing the same thing.
The situation I''m handling with the remove operation is killing and
recreating a perl interpreter in the same process, which
2006 Oct 31
0
6256581 System got a hang or a panic with dtrace+kmdb
Author: bmc
Repository: /hg/zfs-crypto/gate
Revision: 213bfe03af413cdf71c523fb076aaa65a6306a7e
Log message:
6256581 System got a hang or a panic with dtrace+kmdb
6264573 unanchored dtrace_getpcstack is rather imprecise toward function end
6289517 dtrace doesn''t like fd_intr anymore
6291378 dtrace helpers can interfere with the use of kmdb
6295554 dtrace doesn''t report
2010 Aug 10
2
USDT probes
Hi,
I''m posting a question hoping someone will know the answer off hand thereby reducing my search time. :-)
With USDT probes, the tracepoint is only installed by libdtrace itself, never by the drti ioctl. So whenever I run a program with an USDT probe, no tracepoint is installed. Only after I run the dtrace command the tracepoint is actually installed on the victim process.
My question
2007 Mar 09
4
USDT probe issues in C++
Hi people,
When working with some usdt C++ probes we have come across a few issues.
Controlling USDT Function name:
Putting in usdt probes into C++ code gives you the mangled enclosing
function name for the probes Function name. Working around this can be a
pain. You need to wrap your usdt probes in extern C functions and call
these. Could we have an option to control the Function name for
2012 Dec 10
1
Long equation in documentation
I have a long equation that I need to break in the R documentation of a package or it trails off the right hand side of the page. Here's the formula:
\deqn{Cov(r_{ist}, r_{iuv})= [.5\rho_{ist}\rho_{iuv}(\rho_{isu}^2 + \rho_{isv}^2 + \rho_{itu}^2 + \rho_{itv}^2) + \rho_{isu}\rho_{itv}+ \rho_{isv}\rho_{itu}-(\rho_{ist}\rho_{isu}\rho_{isv} + \rho_{its}\rho_{itu}\rho_{itv}) +
2012 May 22
1
Samba4: winbind separator
Hi
When I try and login as a domain user called s3:
su MARINA\\s3
I get:
Kerberos: AS-REQ MARINAs3 at HH3.SITE from ipv4:192.168.1.2:50945 for
krbtgt/HH3.SITE at HH3.SITE
Kerberos: UNKNOWN -- MARINAs3 at HH3.SITE: no such entry found in hdb
Kerberos is not seeing the winbind separator.
So I try winbind separator = +
wbinfo -i s3
MARINA+s3:*:3000028:20513::/home/MARINA/s3:/bin/bash
getent
2009 Aug 28
13
putting a running app into trace mode
Suppose I have a USDT probe in Firefox and that I''m trying to catch
the startup with a probe like this:
proc:::exec-success
/execname == "firefox-bin"/
{
start = timestamp;
}
and stop tracing when Firefox hits this USDT probe:
mozilla:::main-entry
{
exit(0);
}
How do I put the running firefox-bin into "trace mode" so that my USDT
probe fires?
Thanks, Joel
2015 Jul 23
1
[LLVMdev] Intel asm syntax and variable names
Some targets don't have the problem because they prefix all names with an undercore. Apart from that I am not aware of any solution to the problem of keywords clashing with variable names in intel syntax.
- Matthias
> On Jul 23, 2015, at 9:18 AM, Reid Kleckner <rnk at google.com> wrote:
>
> So, there is no prior art for escaping the name of a global symbol with the same name
2009 Nov 11
1
Question about -xlaxyload option to dtrace -G
Hello,
I am trying to get documentation how how this lazyloading happens when you are dealing with dtrace probes being added to user applications. In particular if it somehow avoids the overhead of registering dtrace probes when they aren''t needed, how does it know if they are needed, etc...
thanks,
Robert
2013 Jul 17
0
consulta xml para ubuntu 32bits
Hola.
Sospecho que el problema puede estar relacionado con la versión del paquete
que estás instalando (según veo, la última) y la versión de R que tienes
instalada (2.15). Quizás conociendo la variante de linux que estás
utilizando alguien de la lista te pueda orientar mejor conociendo las
particularidades de *ese* linux.
Salud.
2013/7/17 Ana Marina Srur <asrur@mendoza-conicet.gob.ar>
2015 Jul 23
0
[LLVMdev] Intel asm syntax and variable names
So, there is no prior art for escaping the name of a global symbol with the
same name as a register? If there is, I'd rather we just implement it and
leave it at that.
We can probably fix the 'flags' case easily in LLVM, but I'd rather not
bend over backwards to make ZMM0 be a global name when AVX is disabled.
On Thu, Jul 23, 2015 at 9:12 AM, Yatsina, Marina <marina.yatsina at
2013 Jul 19
0
Resumen de R-help-es, Vol 53, Envío 26
Gracias a todos, finalmente instalando primero el libxml2-dev y luego el dplR, funciono
----- Mensaje original -----
De: r-help-es-request en r-project.org
Para: r-help-es en r-project.org
Enviados: Miércoles, 17 de Julio 2013 12:59:47
Asunto: Resumen de R-help-es, Vol 53, Envío 26
Envíe los mensajes para la lista R-help-es a
r-help-es en r-project.org
Para subscribirse o anular su
2007 Aug 08
0
FW: OT - Callto:// tags inside web pages
Olivier,
I think you are getting confused. Call me on 212-203-4357 and I'll
answer your questions but basically I think you are doing this the wrong
way.
Regards,
Dean Collins
Cognation Pty Ltd
dean at cognation.net
<mailto:dean at cognation.net> +1-212-203-4357 Ph
+61-2-9016-5642 (Sydney in-dial).
________________________________
From: asterisk-users-bounces at
2008 Jan 17
1
Under DTrace USDT and PID, kernel''s microstat accounting doesn''t work in this situation, doesn''t it?
Does anyone has any ideas about this problem?
2008/1/15, ?? TaoJie <eulertao at gmail.com>:
>
> Hi all:
>
> I''m working on revealing system performance now.
> My testing program is an infinite loop. Inside the loop, it will do some
> mathematical opertaions and call function callee(), then go to the next
> loop.
> I install a alarm(30) in the program. It
2006 Aug 07
2
SDT/USDT policies?
Hello,
If I release a new kernel module, do I need to release a SDT provider with it? Just like what "mdb" does - a mdb module together with the associated kernel module. Is it a "MUST" or a "OPTION"?
Also what''s the requirement of USDT and user application? Is it encouraged or not to have many probes inside the code? Can I define my own
2007 Mar 20
0
[LLVMdev] Fwd: Message from Marina Moreno (via www.cs.uiuc.edu)
On Tue, 20 Mar 2007, Vikram S. Adve wrote:
> Some people on these lists may be interested in these positions at Google.
> Please contact Marina directly if you're interested.
Are these job postings llvm-related? If not, they are off topic for this
list.
Thanks,
-Chris
>
> Begin forwarded message:
>
>> Hi Vikram,
>>
>> My name is Marina Moreno. I'm