Browse Source

datman: reduce task priority

sbg
Thomas Gubler 11 years ago committed by Lorenz Meier
parent
commit
8a18cfa386
  1. 2
      src/modules/dataman/dataman.c

2
src/modules/dataman/dataman.c

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

Loading…
Cancel
Save