Okay, you convinced me to go back and do the work to get the relevant stack traces. When I do not include a "requires jdk.unsupported" in my own module, running my modular application with JDK 17 and using a dependency of HSQLDB version 2.5 produces the following stack trace. java.lang.ClassNotFoundException: sun.misc.Unsafe at jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) ~[?:?] at jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) ~[?:?]...
I encountered an exception when shutting down an HSQL database configured to use NIO, and my investigation of the exception led me to this ticket. In my case I am using HSQL in an application that has module information for the Java Platform Module System that was introduced in Java 9. The main issue in my application was that I did not have access to the sun.misc.Unsafe package, which is in the undocumented jdk.unsupported module. In earlier versions of HSQL, my application received an IllegalAccessException...
It looks to me like there may be a mistake on what are currently lines 152 and 153...
I am working with meshing OCC geometry surfaces in netgen version 5.2. I've made...
Here is an SVN patch that applies to the current netgen 5.2 branch and makes the...
Over the past weeks I have been working to use netgen 5.2 to do surface meshing of...