vote up 1 vote down star
% 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 probe on an Objective-C method. I tried -Z, but (unsurprisingly) that just didn't print anything.

[Added] It's not even specific to Objective-C probes. I tried it with a C function from AppKit:

sudo dtrace -p 2446 'pid$target::NSPopAutoreleasePool:entry { trace(); }'
dtrace: no probes specified

So what's wrong? Why does DTrace think I have not specified any probes?

flag

56% accept rate

3 Answers

vote up 2 vote down check

I think you mean:

sudo dtrace -p 2446 -n 'objc$target:NSObject:-init:entry { trace(); }'
link|flag
vote up 0 vote down

Does the process in question allow dtrace? Apple doesn't always allow dtrace on os x.

link|flag
As far as I know, yes. It's an open-source app I work on, not anything by Apple, and I'm not aware of zsh setting P_LNOATTACH on my own processes. – Peter Hosey Jul 28 at 21:29
vote up 0 vote down

In addition to what Graham said, your original statement will only find instances of NSObject, not its descendents. You could try

sudo dtrace -p 2446 -n 'objc$target::-init*:entry {}'

to catch all -init variants by all NSObject-derived instances.

link|flag
It wouldn't catch the [super init] message by a subclass? – Peter Hosey Jul 28 at 22:58
I don't think so. It's my impression that the module is always set to be the instance's class, even when it's calling a method via super. I just tried the command line I suggested with NSObject instead of a blank module and got no matching probes, while leaving the module out hits ~3400 on the application I tried. – Brad Larson Jul 29 at 1:21

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.