瀏覽代碼

Merge pull request #691 from Bluebear233/Bluebear233-fix

[Kernel] fix the main_thread stack issue when not used heap.
Bernard Xiong 8 年之前
父節點
當前提交
724c66b546
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/components.c

+ 1 - 1
src/components.c

@@ -206,7 +206,7 @@ void rt_application_init(void)
 
     tid = &main_thread;
     result = rt_thread_init(tid, "main", main_thread_entry, RT_NULL,
-                            2048, RT_THREAD_PRIORITY_MAX / 3, 20);
+                            main_stack, sizeof(main_stack), RT_THREAD_PRIORITY_MAX / 3, 20);
     RT_ASSERT(result != RT_EOK);
 #endif