You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Eugene S. Ostrovsky (JIRA)" <ji...@apache.org> on 2007/04/20 12:28:15 UTC

[jira] Updated: (HARMONY-3713) [classlib][launcher] DetachCurrentThread() is called before DestroyJavaVM()

     [ https://issues.apache.org/jira/browse/HARMONY-3713?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Eugene S. Ostrovsky updated HARMONY-3713:
-----------------------------------------

    Patch Info: [Patch Available]

> [classlib][launcher] DetachCurrentThread() is called before DestroyJavaVM()
> ---------------------------------------------------------------------------
>
>                 Key: HARMONY-3713
>                 URL: https://issues.apache.org/jira/browse/HARMONY-3713
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Eugene S. Ostrovsky
>         Attachments: H3713-Fix.patch
>
>
> Spec ( http://java.sun.com/j2se/1.5.0/docs/guide/jni/spec/invocation.html#wp16553 ) says:
> "The main thread cannot detach itself from the VM. Instead, it must call DestroyJavaVM() to unload the entire VM"
> In current launcher implementation (main.c) we have:
> ...
>   (*jvm)->DetachCurrentThread(jvm);
>   (*jvm)->DestroyJavaVM (jvm);
> ...
> This bug affects jvmti: HARMONY-3532

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.