4
votes
3answers
219 views
How to use hotspot probes in dtrace on Mac OS X Leopard?
My Leopard system has dtrace built in. I also have Java 6 installed, using the Apple-provided installer:
$ java -version
java version "1.6.0_13"
Java(TM) SE Runtime Environment (b …
2
votes
2answers
155 views
How do I print a CFStringRef in a DTrace action?
I have a DTrace probe catching calls to a function, and one of the function's arguments is a CFStringRef. This is private structure that holds a pointer to a unicode string. But th …
1
vote
1answer
125 views
How to view call stack with dtrace
Question:
How to view call stack, return value and arguments of the simply program below, with dtrace
/** Trival code **/
#include <stdio.h>
int
foo (int *a, int *b) …
0
votes
1answer
24 views
How to get a string from memory into DTrace script
Hello,
I have a char* in my DTrace script that I know points to a zero-terminated string. How to access this string?
Is there some function like copyin() that handles zero-termin …
0
votes
1answer
103 views
Creating dtrace probes for plugins using single provider name
Note that this is for Mac OS X, although I imagine my problem would exist on any dtrace-capable OS.
I have an app that utilizes a lot of plugins. I'm adding userland probes to it …
0
votes
2answers
189 views
Pthread id from pthread_self() doesn’t match data from dtrace script
I'm using this dtrace script from here to try to find when context switches occur for the threads of a java program.
I'm trying to match the data gathered from the script with tra …
0
votes
1answer
57 views
How to redirect Dtrace output when using the -c flag?
How can I redirect only Dtrace's output when running a script with the -C flag?
like in this case:
dscript.d -s myscript.d -c date
Note: I found the answer to my question befo …
3
votes
3answers
172 views
Why does DTrace give me invalid-address errors some times and not others?
My program:
typedef struct objc_class {
struct objc_class *isa;
struct objc_class *super_class;
char *name;
long version;
long info;
long instance_size;
void *ivars;
void …
0
votes
3answers
207 views
ltrace equivalent for osx?
osx has the really powerful dtrace/ktrace/dtruss tools - however i'm not willing to invest the time necessary to learn dealing with them right now.
what's the easiest way to get t …
3
votes
3answers
236 views
How to measure mutex contention?
I have some threaded code using PThreads on Linux that, I suspect, is suffering from excessive lock contention. What tools are available for me to measure this?
Solaris has DTrace …
1
vote
2answers
123 views
How to trace a program from its very beginning without running it as root
I'm writing a tool that calls through to DTrace to trace the program that the user specifies.
If my tool uses dtrace -c to run the program as a subprocess of DTrace, not only can …
1
vote
3answers
169 views
DTrace on Leopard: No probes specified, even when I specify probes
% sudo dtrace -p 2446 'objc$target:NSObject:-init:entry { trace(); }'
dtrace: no probes specified
The manpage suggests that this is the correct format with which to specify a pro …
2
votes
1answer
88 views
Is is possible to use DTrace to view the arguments passed to strncpy?
I know I could write an interposer to watch the arguments being passed to the strncpy library call, but it seems like this should be easy to do with DTrace.
2
votes
2answers
116 views
Setting my own probes with Dtrace in C++
I have some custom dtrace probes in a C-library, and when linking and using the library with a C application my probes work fine, however when linked against C++ it says it can't f …
-1
votes
1answer
80 views
What is the programming paradigm of Dtrace?
I've been using Dtrace for a while, and as time goes by I've began to wonder what's the programming paradigm of the D language used in Dtrace.
It's not an imperative language, I g …
