Skip to content

Commit

Permalink
update: qemu内存够多,给luat线程分配32k内存吧!
Browse files Browse the repository at this point in the history
  • Loading branch information
wendal committed Mar 8, 2020
1 parent 1b0928a commit d5738e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion applications/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ static void _main(void* param) {

int main(void)
{
rt_thread_t t = rt_thread_create("luat", _main, RT_NULL, 6*1024, 15, 20);
rt_thread_t t = rt_thread_create("luat", _main, RT_NULL, 32*1024, 15, 20);
rt_thread_startup(t);
//luat_main(NULL, NULL, NULL);
//while (1) {
Expand Down

0 comments on commit d5738e7

Please sign in to comment.