Displaying 1 result from an estimated 1 matches for "yield_lwp_count".
2006 Sep 12
3
dtrace reports different counts depending on what is being traced
...ot;/
{
@[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 > ./yield_lwp_count.d `pgrep
rrcpd`
lwp_yield 571
yield 572
mutex_lock 2394464
mutex_unlock 2394562...