Hi,

I was running this simple program on kaffe
-----------------------------------------------------------------------
public class loop {
        public static void main(String args[]) {
                long l = 0;
                for(l = 0 ; l < 99999999 ; l++) {
                        System.out.println(">>"+l);
                }
        }
}
-----------------------------------------------------------------------
the exact command i used is

/home/siddharth/kaffe-1.1.5/bin/java -Xms32m -Xmx32m loop

The VM exits with OutofMemory with following error message

"Throwing OutOfMemoryError is not implemented in Boehm-GC.
Aborted"

It could never complete the loop of 99999999  :(

Any hints about what is the issue ?

Thanks,
------------------------
~ Siddharth ~
_______________________________________________
kaffe mailing list
[email protected]
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe

Reply via email to