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
+3 -3
View File
@@ -40,7 +40,7 @@
* @author Julian Oes <joes@student.ethz.ch>
*/
#include <px4_tasks.h>
#include <nuttx/config.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -210,7 +210,7 @@ BottleDrop::~BottleDrop()
/* if we have given up, kill it */
if (++i > 50) {
px4_task_delete(_main_task);
task_delete(_main_task);
break;
}
} while (_main_task != -1);
@@ -225,7 +225,7 @@ BottleDrop::start()
ASSERT(_main_task == -1);
/* start the task */
_main_task = px4_task_spawn_cmd("bottle_drop",
_main_task = task_spawn_cmd("bottle_drop",
SCHED_DEFAULT,
SCHED_PRIORITY_DEFAULT + 15,
1500,