Hey Jim,
Try trussing the dtrace command or use DTrace itself to explore the issue to
see where that errno is coming from. Likely, you''re trying to
instrument a
bazillion places and are hitting the pid probe limit.
Adam
On Wed, Dec 12, 2007 at 05:49:29AM -0800, James Litchfield
wrote:> Couldn''t find any postings with this string in the discussions.
How do I get
> around this?
>
> PID 1393 is firefox.bin
>
> # dtrace -s spec.d 1393
> dtrace: failed to compile script spec.d: line 10: failed to create entry
probe for
''__1cOnsHTMLCSSUtilsSGetCSSPropertyAtom6Mn0AVnsCSSEditableProperty_ppnHnsIAtom__v_'':
Not enough space
>
> spec.d is...
>
> #pragma D option nspec=4
> #pragma D option specsize=500k
> #pragma D option bufsize=64m
> #pragma D option cleanrate=201hz
> pid$1::read:entry
> {
> self->spec = speculation();
> self->ts = timestamp;
> }
> pid$1:::entry
> /self->spec/
> {
> speculate(self->spec);
> }
> pid$1::read:return
> /self->spec && (timestamp - self->ts) > 10000000/
> {
> commit(self->spec);
> self->spec = 0;
> self->ts = 0;
> }
> pid$1::read:return
> /self->spec/
> {
> discard(self->spec);
> self->spec = 0;
> self->ts = 0;
> }
>
>
> --
> This message posted from opensolaris.org
> _______________________________________________
> dtrace-discuss mailing list
> dtrace-discuss at opensolaris.org
--
Adam Leventhal, FishWorks http://blogs.sun.com/ahl