Hello,

I have used the following simple dtrace script to debug a problem with vmstat:

#!/usr/sbin/dtrace -s
#pragma D option flowindent
pid$1:a.out:::entry
{
self->start = 1;
ustack(15);
}
pid$1:a.out::return
/self->start/
{
ustack(15);
}

However I have noticed that static function are not traced.
There's a way with the dtrace pid-provider to trace static function?

--

Andrea Cucciarre'
Storage Engineer
Sun Microsystems Italia S.p.A.
Viale Fulvio Testi, 327
20162 Milano, Italy
Phone +39 800605338
Fax     +39 0264152204
e...@il andrea.cuccia...@sun.com
_______________________________________________
dtrace-discuss mailing list
dtrace-discuss@opensolaris.org

Reply via email to