px4_main_t: fix method declaration throughout the code base

px4_main_t is defined as:
typedef int (*px4_main_t)(int argc, char *argv[]);
which matches with the definition in NuttX, given to task_create
This commit is contained in:
Beat Küng
2018-05-07 13:16:53 +02:00
parent 9772380779
commit 13ab5ed0d0
16 changed files with 43 additions and 31 deletions
+4 -3
View File
@@ -136,7 +136,7 @@ private:
/**
* Trampoline to the worker task
*/
static void task_main_trampoline(void *arg);
static int task_main_trampoline(int argc, char *argv[]);
/**
@@ -273,10 +273,11 @@ GPSSIM::devIOCTL(unsigned long cmd, unsigned long arg)
return ret;
}
void
GPSSIM::task_main_trampoline(void *arg)
int
GPSSIM::task_main_trampoline(int argc, char *argv[])
{
g_dev->task_main();
return 0;
}
int