io.github.hcoona.utils.Errno 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.utils;
import com.google.common.annotations.VisibleForTesting;
@VisibleForTesting
interface Errno {
int ENOENT = 2;
int EINTR = 4;
int EAGAIN = 11;
int ETIMEDOUT = 110;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy