io.github.hcoona.utils.Stat 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 Stat {
interface Mode {
int S_IRWXU = 0_0700;
int S_IRUSR = 0_0400;
int S_IWUSR = 0_0200;
int S_IXUSR = 0_0100;
int S_IRWXG = 0_0070;
int S_IRGRP = 0_0040;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy