Displaying 1 result from an estimated 1 matches for "java_method".
2006 Mar 16
0
Re: Can dtrace agent of JDK be used in IBM Websphere?
...al 1.2.04
XML build XML4J 4.3.3
2. Now I have tried to enable the JVM option -Xrundvmpi:all in IBM
webshpere admin console. It seems worked, but the server startup time
obviously increased, and when accessed the web page and admin console
very slow, sometimes occured timeout error.
When use ./java_method.d to trace the process of Websphere within the
period of startup time. It occured below error:
Content of java_method.d:
#!/usr/sbin/dtrace -s
dvm$target:::method-entry
{
self->ts[copyinstr(arg0),copyinstr(arg1)] = vtimestamp;
}
dvm$target:::method-return
{
@ts[copyinstr(arg0),copyinstr(arg1)...