Displaying 1 result from an estimated 1 matches for "1001us".
Did you mean:
1000us
2008 Nov 24
3
debugging a faulty jboss/application
...0 48 100 0 0 0
30 0 0 0 19 0 25 18 11 8 0 232 100 0 0 0
31 0 0 1 27 0 47 26 12 10 0 10 100 0 0 0
So, 100% cpu in usr mode looks a lot like some kind of infinite loop
I tried to dig it up using dtrace:
profile-1001us
/(execname=="java") && (pid==$1)/
{
@[jstack()]=count();
}
tick-20s
{
exit(O);
}
But I got a LOT of these arrors:
dtrace: error on enabled probe ID 1 (ID 52070: profile:::Profile-1001us): invalid address (0x96a7e000) in action #2
and th stack traces a...