[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
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.
|