aboutsummaryrefslogtreecommitdiff
path: root/src/modules/systemlib/systemlib.h
diff options
context:
space:
mode:
authorpx4dev <px4@purgatory.org>2013-06-01 23:31:53 +0200
committerpx4dev <px4@purgatory.org>2013-06-01 23:31:53 +0200
commit23a62342359ba99eb1c6bb1832ba266b442a7e3e (patch)
tree33c11ab589d24022731074dafe1a3828241f7c86 /src/modules/systemlib/systemlib.h
parent198df9c82ef94c17f8fe240957fbef1a796f8712 (diff)
downloadpx4-firmware-23a62342359ba99eb1c6bb1832ba266b442a7e3e.tar.gz
px4-firmware-23a62342359ba99eb1c6bb1832ba266b442a7e3e.tar.bz2
px4-firmware-23a62342359ba99eb1c6bb1832ba266b442a7e3e.zip
Rename our 'task_spawn' to 'task_spawn_cmd' since NuttX now has its own version of task_spawn that's different.
Diffstat (limited to 'src/modules/systemlib/systemlib.h')
-rw-r--r--src/modules/systemlib/systemlib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/systemlib/systemlib.h b/src/modules/systemlib/systemlib.h
index ff9328b90..0194b5e52 100644
--- a/src/modules/systemlib/systemlib.h
+++ b/src/modules/systemlib/systemlib.h
@@ -58,7 +58,7 @@ __EXPORT void killall(void);
#endif
/** Starts a task and performs any specific accounting, scheduler setup, etc. */
-__EXPORT int task_spawn(const char *name,
+__EXPORT int task_spawn_cmd(const char *name,
int priority,
int scheduler,
int stack_size,