Sign in
third-party-mirror
/
jnr-posix
/
refs/heads/master
/
.
/
src
/
main
/
java
/
jnr
/
posix
/
NanosecondFileStat.java
blob: 00f1e96c8be831132a68c6ecc9d58864839ca385 [
file
] [
log
] [
blame
] [
edit
]
package
jnr
.
posix
;
/**
* Represents the additional nsec resolution on the stat struct in Linux 2.6+.
*/
public
interface
NanosecondFileStat
extends
FileStat
{
long
aTimeNanoSecs
();
long
cTimeNanoSecs
();
long
mTimeNanoSecs
();
}