[Bug 167] JVM crash with CGLIB on a Linux Fedora 9 PPC
bugzilla-daemon at icedtea.classpath.org
bugzilla-daemon at icedtea.classpath.org
Fri Jul 11 11:06:39 PDT 2008
http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=167
------- Comment #2 from mbaudier at argeo.org 2008-07-11 18:06 -------
Sorry, I forgot to put the latest version of my Java test program (used for
generating the GDB output).
Here it is:
package crashjvm;
import java.lang.reflect.Method;
import java.util.Vector;
import net.sf.cglib.proxy.Enhancer;
import net.sf.cglib.proxy.MethodInterceptor;
import net.sf.cglib.proxy.MethodProxy;
public class CrashJvm {
public static void main(String[] args) {
System.out.println("Start test.");
Object obj = Enhancer.create(Runnable.class, new MethodInterceptor() {
public Object intercept(Object obj, Method method, Object[] args,
MethodProxy proxy) throws Throwable {
System.out.println("Enhance method in " + obj + ": "
+ method.getName());
return obj;
}
});
System.out.println("Enhanced object.");
((Runnable)obj).run();
System.out.println("Runned enhanced object.");
}
}
--
Configure bugmail: http://icedtea.classpath.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
More information about the distro-pkg-dev
mailing list