Hi,<br>
<br>
I was running this simple program on kaffe <br>
-----------------------------------------------------------------------<br>
public class loop {<br>
public static void main(String args[]) {<br>
long l = 0;<br>
for(l = 0 ; l < 99999999 ; l++) {<br>
System.out.println(">>"+l);<br>
}<br>
}<br>
}<br>
-----------------------------------------------------------------------<br>
the exact command i used is <br>
<br>
/home/siddharth/kaffe-1.1.5/bin/java -Xms32m -Xmx32m loop<br>
<br>
The VM exits with OutofMemory with following error message<br>
<br>
"Throwing OutOfMemoryError is not implemented in Boehm-GC.<br>
Aborted"<br>
<br>
It could never complete the loop of 99999999 :(<br>
<br>
Any hints about what is the issue ?<br>
<br clear="all">Thanks,<br>
------------------------<br>~ Siddharth ~