I've searched around and cant seem to put my finger on a clear answer. I have a
case where I wish to trace a given function in several processes simulateously.
So I have a script:
#!/usr/sbin/dtrace -s
pid$1::somefunc:entry { some action; }
pid$2::somefunc:entry { some action; }
pid$3somefunc:entry { some action; }
pid$4:somefunc:entry { some action; }
It works fine with as many as 4 pids, but when I go up to 5, it aborts with
an error message that it is unable to attach to the 5th pid "unexpected system
error".
Is there a specific limit or restriction?
Thanks
--
This messages posted from opensolaris.org