From 4ff29c8f8e8b8bfeebfc4628d90bd11693bb7c32 Mon Sep 17 00:00:00 2001 From: GuEe-GUI <2991707448@qq.com> Date: Mon, 1 Dec 2025 16:05:48 +0800 Subject: [PATCH] [LIBC/AIO] Set the AIO work stack size default. Signed-off-by: GuEe-GUI <2991707448@qq.com> --- components/libc/posix/io/aio/aio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/libc/posix/io/aio/aio.c b/components/libc/posix/io/aio/aio.c index a6d8acab091..8ca8b3124ec 100644 --- a/components/libc/posix/io/aio/aio.c +++ b/components/libc/posix/io/aio/aio.c @@ -498,7 +498,7 @@ int lio_listio(int mode, struct aiocb * const list[], int nent, */ int aio_system_init(void) { - aio_queue = rt_workqueue_create("aio", 2048, RT_THREAD_PRIORITY_MAX/2); + aio_queue = rt_workqueue_create("aio", IDLE_THREAD_STACK_SIZE, RT_THREAD_PRIORITY_MAX/2); RT_ASSERT(aio_queue != NULL); return 0;