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 c23878e4427a2e58cc30a16034eb7eef9ee30af0 Author: yinshengkai <[email protected]> AuthorDate: Sat Oct 12 20:01:11 2024 +0800 sched: modify CONFIG_DUMP_ON_EXIT to CONFIG_SCHED_DUMP_ON_EXIT Signed-off-by: yinshengkai <[email protected]> --- fs/inode/fs_files.c | 2 +- include/nuttx/fs/fs.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/inode/fs_files.c b/fs/inode/fs_files.c index 1a2f53dc2d..352d5eec82 100644 --- a/fs/inode/fs_files.c +++ b/fs/inode/fs_files.c @@ -378,7 +378,7 @@ void files_initlist(FAR struct filelist *list) * ****************************************************************************/ -#ifdef CONFIG_DUMP_ON_EXIT +#ifdef CONFIG_SCHED_DUMP_ON_EXIT void files_dumplist(FAR struct filelist *list) { int count = files_countlist(list); diff --git a/include/nuttx/fs/fs.h b/include/nuttx/fs/fs.h index d2292d0009..cc9591fd05 100644 --- a/include/nuttx/fs/fs.h +++ b/include/nuttx/fs/fs.h @@ -886,7 +886,7 @@ void files_initlist(FAR struct filelist *list); * ****************************************************************************/ -#ifdef CONFIG_DUMP_ON_EXIT +#ifdef CONFIG_SCHED_DUMP_ON_EXIT void files_dumplist(FAR struct filelist *list); #else # define files_dumplist(l)
