Browse Source

dataman: Reduce stack to 1800, based on real usage of 800 bytes

sbg
Lorenz Meier 10 years ago
parent
commit
21b88cd874
  1. 2
      src/modules/dataman/dataman.c

2
src/modules/dataman/dataman.c

@ -793,7 +793,7 @@ start(void) @@ -793,7 +793,7 @@ start(void)
sem_init(&g_init_sema, 1, 0);
/* start the worker thread */
if ((task = task_spawn_cmd("dataman", SCHED_DEFAULT, SCHED_PRIORITY_DEFAULT, 2000, task_main, NULL)) <= 0) {
if ((task = task_spawn_cmd("dataman", SCHED_DEFAULT, SCHED_PRIORITY_DEFAULT, 1800, task_main, NULL)) <= 0) {
warn("task start failed");
return -1;
}

Loading…
Cancel
Save