about summary refs log tree commit diff
path: root/support/support.h
diff options
context:
space:
mode:
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>2021-03-29 14:40:30 -0300
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>2021-03-31 17:20:14 -0300
commitbfddda2570331da2ae4387b530456e6c4e230257 (patch)
tree63bd920593b38f7f65e282eb1e6ab1c9143bedd2 /support/support.h
parent18f0afa8485e8cd6434d118cb841d78d897230b6 (diff)
downloadglibc-bfddda2570331da2ae4387b530456e6c4e230257.tar.gz
glibc-bfddda2570331da2ae4387b530456e6c4e230257.tar.xz
glibc-bfddda2570331da2ae4387b530456e6c4e230257.zip
io: Check at runtime if timestamp supports nanoseconds
Now that non-LFS stat function is implemented on to on LFS, it will
use statx when available.  It allows to check for nanosecond timestamp
if the kernel supports __NR_statx.

Checked on s390-linux-gnu with 4.12.14 kernel.
Diffstat (limited to 'support/support.h')
-rw-r--r--support/support.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/support.h b/support/support.h
index b0352726bf..e023d00857 100644
--- a/support/support.h
+++ b/support/support.h
@@ -142,7 +142,7 @@ static __inline bool support_path_support_time64 (const char *path)
 }
 
 /* Return true if stat supports nanoseconds resolution.  */
-extern bool support_stat_nanoseconds (void);
+extern bool support_stat_nanoseconds (const char *path);
 
 __END_DECLS