diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2022-04-15 14:34:35 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2022-04-15 14:34:35 -0400 |
commit | acf934993a8112023f111ae1dfedc90f40e1d496 (patch) | |
tree | 71498aed03fb8a0f0a225fa29a3aa349e7bcc455 /bftw.h | |
parent | f12551285e1be84c586f1697a7f864b155ba5706 (diff) | |
download | bfs-acf934993a8112023f111ae1dfedc90f40e1d496.tar.xz |
bftw: New BFTW_BUFFER flag
Diffstat (limited to 'bftw.h')
-rw-r--r-- | bftw.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -167,6 +167,8 @@ enum bftw_flags { BFTW_PRUNE_MOUNTS = 1 << 7, /** Sort directory entries before processing them. */ BFTW_SORT = 1 << 8, + /** Read each directory into memory before processing its children. */ + BFTW_BUFFER = 1 << 9, }; /** |