/core/sdk-objc/ProjectTemplates/Objective-C Command Line File System/TemplateFS.d

http://macfuse.googlecode.com/ · D · 9 lines · 7 code · 2 blank · 0 comment · 1 complexity · 301df45df91f258ab193f75ef130481c MD5 · raw file

  1. #!/usr/sbin/dtrace -s
  2. #pragma D option quiet
  3. macfuse_objc*:::delegate-entry
  4. /execname == "ÇPROJECTNAME?"/
  5. {
  6. printf("%-14d %s: %s\n", timestamp, probefunc, copyinstr(arg0));
  7. }