FreeBSD Bugzilla – Attachment 208391 Details for
Bug 241317
java/openjdk8: unsatisfied link of getmntonname0
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
make BsdNativeDispatcher actoally load the native library to dispatch to
patch-jdk_src_solaris_classes_sun_nio_fs_BsdNativeDispatcher.java (text/plain), 517 bytes, created by
Christoph Moench-Tegeder
on 2019-10-17 20:45:21 UTC
(
hide
)
Description:
make BsdNativeDispatcher actoally load the native library to dispatch to
Filename:
MIME Type:
Creator:
Christoph Moench-Tegeder
Created:
2019-10-17 20:45:21 UTC
Size:
517 bytes
patch
obsolete
>--- jdk/src/solaris/classes/sun/nio/fs/BsdNativeDispatcher.java.orig 2019-10-17 19:49:41 UTC >+++ jdk/src/solaris/classes/sun/nio/fs/BsdNativeDispatcher.java >@@ -69,6 +69,11 @@ class BsdNativeDispatcher extends UnixNativeDispatcher > private static native void initIDs(); > > static { >+ AccessController.doPrivileged(new PrivilegedAction<Void>() { >+ public Void run() { >+ System.loadLibrary("nio"); >+ return null; >+ }}); > initIDs(); > } > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 241317
:
208391
|
208392