Displaying 1 result from an estimated 1 matches for "mysql_parse".
2008 Mar 21
1
dtrace: failed to grab pid 16537: process is traced
I''m getting an odd behavior while trying to trace a mysql process using
the -p flag on a Sun Cluster.
This fails
# dtrace -n ''pid$target::*mysql_parse*:entry {}'' -p `pgrep -x mysqld`
dtrace: failed to grab pid 16537: process is traced
Yet this works
# dtrace -n ''pid$1::*mysql_parse*:entry {}'' `pgrep -x mysqld`
dtrace: description ''pid$1::*mysql_parse*:entry '' matched 1 probe
All processes managed wit...