fs_shell: Add the new B_QUERY_WATCH_ALL.
This commit is contained in:
@@ -979,6 +979,7 @@
|
|||||||
|
|
||||||
#define B_LIVE_QUERY FSSH_B_LIVE_QUERY
|
#define B_LIVE_QUERY FSSH_B_LIVE_QUERY
|
||||||
#define B_QUERY_NON_INDEXED FSSH_B_QUERY_NON_INDEXED
|
#define B_QUERY_NON_INDEXED FSSH_B_QUERY_NON_INDEXED
|
||||||
|
#define B_QUERY_WATCH_ALL FSSH_B_QUERY_WATCH_ALL
|
||||||
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|||||||
@@ -12,13 +12,9 @@
|
|||||||
|
|
||||||
/* Flags for fs_open_[live_]query() */
|
/* Flags for fs_open_[live_]query() */
|
||||||
|
|
||||||
#define FSSH_B_LIVE_QUERY 0x00000001
|
#define FSSH_B_LIVE_QUERY (1 << 0)
|
||||||
// Note, if you specify B_LIVE_QUERY, you have to use fs_open_live_query();
|
#define FSSH_B_QUERY_NON_INDEXED (1 << 1)
|
||||||
// it will be ignored in fs_open_query().
|
#define FSSH_B_QUERY_WATCH_ALL (1 << 2)
|
||||||
#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.
|
|
||||||
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|||||||
Reference in New Issue
Block a user