This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git

commit 3a38e71ef40149231498d9041d8949f502af3c6e
Author: wangchengdong <[email protected]>
AuthorDate: Sun Feb 8 15:42:28 2026 +0800

    aio: add depends on not disable all signals
    
     when all signals are disabled, aio should not be enabled
    
    Signed-off-by: Chengdong Wang <[email protected]>
---
 fs/aio/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/aio/Kconfig b/fs/aio/Kconfig
index d3561a5ee02..fa09b9a38cc 100644
--- a/fs/aio/Kconfig
+++ b/fs/aio/Kconfig
@@ -6,7 +6,7 @@
 config FS_AIO
        bool "Asynchronous I/O support"
        default n
-       depends on SCHED_WORKQUEUE
+       depends on SCHED_WORKQUEUE && !DISABLE_ALL_SIGNALS
        ---help---
                Enable support for asynchronous I/O.  This selection enables the
                interfaces declared in include/aio.h.

Reply via email to