We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Relinker should be thread safe, but ReLinkerInstance implement code:
ReLinkerInstance
public class ReLinkerInstance { private static final String LIB_DIR = "lib"; protected final Set<String> loadedLibraries = new HashSet<String>(); ...... }
loadedLibraries is NOT thread safe set, although system.loadLibrary API is thread-safe
loadedLibraries
system.loadLibrary
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Relinker should be thread safe, but
ReLinkerInstance
implement code:loadedLibraries
is NOT thread safe set, althoughsystem.loadLibrary
API is thread-safeThe text was updated successfully, but these errors were encountered: