在 Wind River OS 中运行我的软件时,我遇到了以下异常。在内部,我正在使用抛出此异常的 JNA 库。
Exception in thread "Thread-33" java.lang.UnsatisfiedLinkError: /tmp/jna-3506402/jna3961384745178924050.tmp: /tmp/jna-3506402/jna3961384745178924050.tmp: failed to map segment from shared object.
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1938)
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1821)
at java.lang.Runtime.load0(Runtime.java:809)
at java.lang.System.load(System.java:1086)
at com.sun.jna.Native.loadNativeDispatchLibraryFromClasspath(Native.java:851)
at com.sun.jna.Native.loadNativeDispatchLibrary(Native.java:826)
at com.sun.jna.Native.<clinit>(Native.java:140)
at com.pty4j.unix.linux.OSFacadeImpl.<clinit>(OSFacadeImpl.java:95)
at com.pty4j.unix.PtyHelpers.<clinit>(PtyHelpers.java:212)
at com.pty4j.unix.Pty.ptyMasterOpen(Pty.java:142)
at com.pty4j.unix.Pty.openMaster(Pty.java:194)
at com.pty4j.unix.Pty.<init>(Pty.java:57)
at com.pty4j.PtyProcess.exec(PtyProcess.java:62)
at com.pty4j.PtyProcess.exec(PtyProcess.java:54)
我尝试使用 exec 和 noexec 安装 /tmp。但仍然没有帮助。
在普通的 Ubuntu、Red Hat 中,它按预期工作,只有在 Wind River 上才会抛出此错误。
很感谢任何形式的帮助。
谢谢,拉梅什 G。