search for: rrcpd

Displaying 1 result from an estimated 1 matches for "rrcpd".

2006 Sep 12
3
dtrace reports different counts depending on what is being traced
...whether we trace mutex_lock or mutex_unlock or not. The number reported when we are not tracing mutex_lock or mutex_unlock is higher. What could be going on here and which one is the correct number. This is on S10 U2. Thanks, Rao. #!/usr/sbin/dtrace -qs syscall::yield:entry /execname=="rrcpd"/ { @[probefunc]=count(); } pid$1:libc:lwp_yield:entry { @[probefunc]=count(); } pid$1:libc:mutex_lock:entry { @[probefunc]=count(); } pid$1:libc:mutex_unlock:entry { @[probefunc]=count(); } tick-10s { exit(0);} 2345 x4100-240-02 /export/home/dtrace/PIT >...