ltrace equivalent for osx?

13,515

Solution 1

No answer for ltrace (except perhaps "work out how to use dtrace" :-) ), but for system call tracing ala strace, dtruss is a pretty good front end to dtrace.

e.g.

dtruss df -h     # run and examine the "df -h" command

dtruss -p 1871   # examine PID 1871

dtruss -n tar    # examine all processes called "tar"

Solution 2

you don't need to learn dtrace to use it. there are quite a few dtrace scripts that come with OSX. To see an (incomplete) list:

man -k dtrace

In your case dapptrace might do the job.

Solution 3

I'd suggest that DTrace is not as complex as you think it is. I just wrote a two-part tutorial on using DTrace to tune Cocoa applications for the Mac or iPhone, which can be found here and here. I came into it thinking that DTrace would be extremely difficult to work with, but it turns out to be reasonably straightforward to use.

Share:
13,515
Enki
Author by

Enki

Updated on June 05, 2022

Comments

  • Enki
    Enki almost 2 years

    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 the equivalent functionality of linux ltrace (and possibly strace) on OSX?

  • reto
    reto over 9 years
    both links are dead. Can you please update your post?
  • Brad Larson
    Brad Larson over 9 years
    @reto - For now, I've linked to the archived versions of these pages, but I've checked with the old site administrators about why it went offline. I'll see about summarizing the articles in the answer, as well.