From 23a62342359ba99eb1c6bb1832ba266b442a7e3e Mon Sep 17 00:00:00 2001 From: px4dev Date: Sat, 1 Jun 2013 23:31:53 +0200 Subject: Rename our 'task_spawn' to 'task_spawn_cmd' since NuttX now has its own version of task_spawn that's different. --- src/modules/systemlib/systemlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/modules/systemlib/systemlib.c') diff --git a/src/modules/systemlib/systemlib.c b/src/modules/systemlib/systemlib.c index 7814950fc..3283aad8a 100644 --- a/src/modules/systemlib/systemlib.c +++ b/src/modules/systemlib/systemlib.c @@ -65,7 +65,7 @@ static void kill_task(FAR struct tcb_s *tcb, FAR void *arg) kill(tcb->pid, SIGUSR1); } -int task_spawn(const char *name, int scheduler, int priority, int stack_size, main_t entry, const char *argv[]) +int task_spawn_cmd(const char *name, int scheduler, int priority, int stack_size, main_t entry, const char *argv[]) { int pid; -- cgit v1.2.3