[components][drivers][workqueue] increase the default stack size of the workqueue thread.

This commit is contained in:
EvalZero
2019-04-03 18:26:55 +08:00
parent 583f8c3073
commit c3ee1be7ee
2 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -394,7 +394,7 @@ rt_err_t rt_work_cancel(struct rt_work *work)
static int rt_work_sys_workqueue_init(void)
{
sys_workq = rt_workqueue_create("sys_work", RT_SYSTEM_WORKQUEUE_STACKSIZE * 4,
sys_workq = rt_workqueue_create("sys_work", RT_SYSTEM_WORKQUEUE_STACKSIZE,
RT_SYSTEM_WORKQUEUE_PRIORITY);
return RT_EOK;