A small nugget of information that might be useful to someone:
The standard timestamps in struct stat
have type time_t
which only gives a resolution of seconds which is less than required in many situations. Luckily most operating systems provide a higher resolution timestamp within struct stat
but the field name differs among Linux, BSD, etc. On Linux you can get at this with st_mtim.tv_nsec
and on BSD it is st_mtimespec.tv_nsec
(this also works for OS X).
With autoconf you can use something like:
AC_CHECK_MEMBERS([struct stat.st_mtimespec.tv_nsec]) AC_CHECK_MEMBERS([struct stat.st_mtim.tv_nsec])
And then later you can pull the nanoseconds out of the timestamp with:
#if defined HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC ns = st.st_mtimespec.tv_nsec; #elif defined HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC ns = st.st_mtim.tv_nsec; #else ns = 0; #endif
This works the same way for atime and ctime as well as mtime. Make sure to handle the #else
case as some systems (Cygwin?) don’t have this at all.