The process created in NativeLibrary.getLinuxLdPaths isn't waited for:
|
Process process = Runtime.getRuntime().exec("/sbin/ldconfig -p"); |
As a consequence, the JVM keeps a "process reaper" thread up. This happens to be more troublesome than it seems under constrained conditions (performances, resources).
The process created in
NativeLibrary.getLinuxLdPathsisn't waited for:jna/src/com/sun/jna/NativeLibrary.java
Line 992 in 2efd065
As a consequence, the JVM keeps a "process reaper" thread up. This happens to be more troublesome than it seems under constrained conditions (performances, resources).