Submitted On 05-APR-2002
joviru
Same problem with 1.4.0-b92(Win2K,Tomcat4) - the 1.3.1-b24
JDK works fine. But the real problem - we used a Debug
class with a assert function (now a Java Keyword). After
rename this function the VM didn't crash again.
Submitted On 12-APR-2002
Dens666
I Tried to run my classes under Debian Linux. No problem.
So this is stricly an issue of for JVM 1.4.0/windows for me.
Submitted On 12-APR-2002
Dens666
I Also have this Error ID but for something completely different (in some WarehouseImpl inside my RMI Server). Didn't found any workaround. Bug occurs 100% of the time in mixed or interpreted mode. It doesn't occur with 1.3.1
OS: Win XP Pro
Just Wondering how it is possible to have same Error IDs with so different BUGs...
Submitted On 06-MAY-2002
bryce777
I have the same error message, and yet another error.
I do some complexs tuff including a DB query then I have a nullpointer exception on a line that looks like:
if(myHashtable==null||myHashtable.length<1)
return;
This should not ever happen.
I use Oracle 8.17, patched, with the latest drivers (which are for java 1.2!).
I may be crazy, but since the bug happens every time I think it has something to do with the Oracle drivers.
I imagine either there is a name/classloading conflict or something.
If not that, I use reflection heavily, so it could be that the reflection methods are doing something unsafe in another thread somehow.
Bug is definitely repeatable, happens every time, but my application is far to large for sun to debug....
Submitted On 06-MAY-2002
bryce777
Forgive my typos above, please
Submitted On 12-JUN-2002
csallnch
Same errorID produced by the following code on windows xp
and solaris
HotSpot(TM) Client VM (build 1.4.0-b92, mixed mode):
package errorID43113F32554E54494D45110E435050034A;
public class Test {
interface A {String toString();}
interface B extends A {}
static class C implements B {}
public static void main(String[] args) {
B v = new C();
System.out.println(v.toString());
}
}
Submitted On 26-AUG-2002
Ernimril
Also tested with
java version "1.4.1-rc"
Java(TM) 2 Runtime Environment, Standard Edition (build
1.4.1-rc-b19)
Java HotSpot(TM) Client VM (build 1.4.1-rc-b19, mixed mode)
Still crashes
PLEASE NOTE: JDK6 is formerly known as Project Mustang
|