https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=226968
--- Comment #9 from Hans Petter Selasky <[email protected]> --- When you make a hook for a function "$1", then you can print arg0, arg1, arg2 and so on. We're interested in arg1 I guess. int callout_reset_sbt_on(struct callout *, sbintime_t, sbintime_t, void (*)(void *), void *, int, int); Try this: #!/usr/sbin/dtrace -s fbt::$1:entry { printf("callout_reset_sbt_on(%d,%d)\n", arg0, arg1); @[probefunc, stack()] = count(); } -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-usb To unsubscribe, send any mail to "[email protected]"
