Hello there! I have some C++ code that I put in a dynamic library and I want to use it from Java. Since JDK does not allow me to load two different libraries that depend on each other, I implemented a native method that does the following: 1) Loads libstdc++.so 2) Loads my library 3) Performs some work 4) Unloads both, reverse order The result is the death of JVM. If I skip step 4 then I can get the job done but the death of JVM still comes at the end of the execution of Java. Does someone have any hints to guide me? Thank you very much! -- Cassino