Displaying 1 result from an estimated 1 matches for "java_gc".
Did you mean:
java_
2006 Mar 16
0
Re: Can dtrace agent of JDK be used in IBM Websphere?
...linit> 34916
com.ibm.websphere.models.config.namestore.impl.NamestorePackageImpl
<clinit>
35166
com.ibm.websphere.models.config.ipc.impl.IpcPackageImpl <clinit>
Use another java_gc.d to trace the process, seems no error founded:
Content of java_gc.d
#!/usr/sbin/dtrace -s
dvm$target:::gc-start
{
self->ts = vtimestamp;
}
dvm$target:::gc-finish
{
printf("GC ran for %d nsec\n", vtimestamp - self->ts);
}
dtrace: script ''./java_gc.d'' matched 2...