nuttx/fs/notify/Kconfig
guohao15 86e00896d3 fs:notify add support for inotify
support API: open close read write unlink mkdir rename fchstat rmdir symlink

Signed-off-by: guohao15 <guohao15@xiaomi.com>
2024-08-22 01:50:37 +08:00

26 lines
490 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config FS_NOTIFY
bool "FS Notify System"
default n
---help---
The Fsnotify System
if FS_NOTIFY
config FSNOTIFY_BUCKET_SIZE
int "Dir hash bucket size"
default 64
config FSNOTIFY_MAX_EVENTS
int "Max events in one notify device"
default 1024
config FSNOTIFY_FD_POLLWAITERS
int "Max pollwaiters in one notify devcie"
default 2
endif # FS_NOTIFY