Browse Source

test_dataman:Set SEM_PRIO_NONE on all semaphores

master
David Sidrane 3 years ago committed by Daniel Agar
parent
commit
db159a43cc
  1. 2
      src/systemcmds/tests/test_dataman.c

2
src/systemcmds/tests/test_dataman.c

@ -179,7 +179,7 @@ int test_dataman(int argc, char *argv[]) @@ -179,7 +179,7 @@ int test_dataman(int argc, char *argv[])
px4_sem_init(sems + i, 1, 0);
/* sems use case is a signal */
px4_sem_setprotocol(sems, SEM_PRIO_NONE);
px4_sem_setprotocol(sems + i, SEM_PRIO_NONE);
/* start the task */
if ((task = px4_task_spawn_cmd("dataman", SCHED_DEFAULT, SCHED_PRIORITY_DEFAULT, 2048, task_main, av)) <= 0) {

Loading…
Cancel
Save