public inbox for mauve-discuss@sourceware.org
 help / color / mirror / Atom feed
* Re: StackOverflowError
@ 2007-09-27 20:12 Pedro Izecksohn
  2007-09-28 10:27 ` StackOverflowError Dalibor Topic
  0 siblings, 1 reply; 4+ messages in thread
From: Pedro Izecksohn @ 2007-09-27 20:12 UTC (permalink / raw)
  To: mauve-discuss

>> May this list be the wrong place to discuss it, but:

> You'd have a better chance of reaching gcj developers by using the gcj
> mailing list. Or its bugtracker.

  I forgot to ask:

  Must a conforming JVM enable applications to catch all java.lang.Error subclasses?

  If the answer is yes, Mauve should include such tests.






       
____________________________________________________________________________________
Building a website is a piece of cake. Yahoo! Small Business gives you all the tools to get online.
http://smallbusiness.yahoo.com/webhosting

^ permalink raw reply	[flat|nested] 4+ messages in thread
* StackOverflowError
@ 2007-09-27  1:12 Pedro Izecksohn
  2007-09-27  8:05 ` StackOverflowError Dalibor Topic
  0 siblings, 1 reply; 4+ messages in thread
From: Pedro Izecksohn @ 2007-09-27  1:12 UTC (permalink / raw)
  To: Mauve list

  May this list be the wrong place to discuss it, but:

  The following code is not a Mauve compatibility test, but it does work different between Sun Microsystems' Java HotSpot(TM) Client VM (build 1.6.0_02-b05, mixed mode) and gij (GNU libgcj) version 4.2.1 (Debian 4.2.1-5).

pedro@pentiumd:~/programming/java/recursive$ java Recursive 
Successfully recursed 16286.
pedro@pentiumd:~/programming/java/recursive$ gij Recursive
Segmentation fault

public class Recursive {

static int nTimes=0;

public static void main (String [] args) {

Thread t = new Thread (new Runnable () {

public void run () {

recurse();

} // run ()

private void recurse () {

Recursive.nTimes++;

try {recurse();} catch (StackOverflowError soe) {}

} // recurse ()

} // Runnable

); // new Thread

t.start();
try {t.join();} catch (InterruptedException ie) {}

System.out.println ("Successfully recursed "+nTimes+".");

} // main (String [])

} // Recursive





      ____________________________________________________________________________________
Shape Yahoo! in your own image.  Join our Network Research Panel today!   http://surveylink.yahoo.com/gmrs/yahoo_panel_invite.asp?a=7 


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2007-09-28 10:27 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-09-27 20:12 StackOverflowError Pedro Izecksohn
2007-09-28 10:27 ` StackOverflowError Dalibor Topic
  -- strict thread matches above, loose matches on Subject: below --
2007-09-27  1:12 StackOverflowError Pedro Izecksohn
2007-09-27  8:05 ` StackOverflowError Dalibor Topic

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).