fs_shell: Add the new B_QUERY_WATCH_ALL.

This commit is contained in:
Augustin Cavalier
2026-02-04 17:21:25 -05:00
parent fe444bc3cb
commit 379c8aebab
2 changed files with 4 additions and 7 deletions
@@ -979,6 +979,7 @@
#define B_LIVE_QUERY FSSH_B_LIVE_QUERY
#define B_QUERY_NON_INDEXED FSSH_B_QUERY_NON_INDEXED
#define B_QUERY_WATCH_ALL FSSH_B_QUERY_WATCH_ALL
////////////////////////////////////////////////////////////////////////////////
+3 -7
View File
@@ -12,13 +12,9 @@
/* Flags for fs_open_[live_]query() */
#define FSSH_B_LIVE_QUERY 0x00000001
// Note, if you specify B_LIVE_QUERY, you have to use fs_open_live_query();
// it will be ignored in fs_open_query().
#define FSSH_B_QUERY_NON_INDEXED 0x00000002
// Only enable this feature for non time-critical things, it might
// take a long time to proceed.
// Also, not every file system might support this feature.
#define FSSH_B_LIVE_QUERY (1 << 0)
#define FSSH_B_QUERY_NON_INDEXED (1 << 1)
#define FSSH_B_QUERY_WATCH_ALL (1 << 2)
#ifdef __cplusplus