io.github.hcoona.concurrent.LibCExt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of native-named-mutex Show documentation
Show all versions of native-named-mutex Show documentation
Cross platform named mutex which provide a system-wide
mutex synchronization primitive
The newest version!
package io.github.hcoona.concurrent;
import com.google.common.annotations.VisibleForTesting;
import com.sun.jna.Native;
import com.sun.jna.platform.unix.LibC;
@VisibleForTesting
interface LibCExt extends LibC {
LibCExt INSTANCE = Native.loadLibrary("c", LibCExt.class);
String strerror(int errnum);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy