You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Gregory Shimansky (JIRA)" <ji...@apache.org> on 2006/11/14 23:48:39 UTC

[jira] Resolved: (HARMONY-2018) [DRLVM] Fix support of SOE and other runtime exceptions in VM native code

     [ http://issues.apache.org/jira/browse/HARMONY-2018?page=all ]

Gregory Shimansky resolved HARMONY-2018.
----------------------------------------

    Resolution: Fixed

Patch applied at 475029. Please check that it was applied as expected. Namely the signals_ipf.cpp file.

If you can please take care about crashing smoke tests x86_64.

> [DRLVM] Fix support of SOE and other runtime exceptions in VM native code
> -------------------------------------------------------------------------
>
>                 Key: HARMONY-2018
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2018
>             Project: Harmony
>          Issue Type: Bug
>          Components: DRLVM
>            Reporter: Pavel Afremov
>         Assigned To: Gregory Shimansky
>         Attachments: Fix-support-of-SOE-and-other-runtime-exceptions-in-VM-native-code.txt, Fix-support-of-SOE-and-other-runtime-exceptions-in-VM-native-code.txt, Fix-support-of-SOE-and-other-runtime-exceptions-in-VM-native-code.txt, Fix-support-of-SOE-and-other-runtime-exceptions-in-VM-native-code.txt
>
>
> The following test shows that runtime exceptions in VM native code aren't processed correctly.
> package exception;
> class FinalizeStackTest {
>     private static final int MAX_DEPTH = 1000000;
>     FinalizeStackTest(int c) {
>         if (c > 0) {
>             new FinalizeStackTest(c - 1);
>         } else {
>             System.out.println("PASS");
>         }
>     }
>     protected void finalize() {
>         / empty
>     }
>     public static void main(String[] args) {
>         try {
>             new FinalizeStackTest(MAX_DEPTH);
>             System.out.println("FAIL");
>         } catch (StackOverflowError soe) {
>             System.out.println("PASS : " + soe);
>         } catch (Throwable th) {
>             System.out.println("FAIL");
>         }
>     }
> }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira