Reverted: Use OS independent API for task creation/deletion

Keep existing API use in code. Bind the use of the OS independent
implementation in the systemlib layer.

Signed-off-by: Mark Charlebois <charlebm@gmail.com>
This commit is contained in:
Mark Charlebois
2015-03-11 11:52:18 -07:00
parent ddb32742eb
commit bf429188b4
32 changed files with 78 additions and 84 deletions
+2 -2
View File
@@ -42,7 +42,7 @@
* @author Anton Babushkin <anton.babushkin@me.com>
*/
#include <px4_tasks.h>
#include <nuttx/config.h>
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
@@ -275,7 +275,7 @@ int commander_main(int argc, char *argv[])
}
thread_should_exit = false;
daemon_task = px4_task_spawn_cmd("commander",
daemon_task = task_spawn_cmd("commander",
SCHED_DEFAULT,
SCHED_PRIORITY_MAX - 40,
3400,