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? --
|
_______________________________________________ dtrace-discuss mailing list dtrace-discuss@opensolaris.org