From 57eeb5374fc6468846683576c9c81859367bbf8a Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Thu, 29 Aug 2019 23:45:45 -0400 Subject: stat: New BFS_STAT_NOSYNC flag --- stat.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'stat.h') diff --git a/stat.h b/stat.h index 4e4cbaf..369ac4a 100644 --- a/stat.h +++ b/stat.h @@ -69,6 +69,8 @@ enum bfs_stat_flag { BFS_STAT_NOFOLLOW = 1 << 0, /** Try to follow symlinks, but fall back to the link itself if broken. */ BFS_STAT_TRYFOLLOW = 1 << 1, + /** Try to use cached values without synchronizing remote filesystems. */ + BFS_STAT_NOSYNC = 1 << 2, }; #ifdef DEV_BSIZE -- cgit v1.2.3