Processor: c6657 Gauss DSP
following is a task create function in vxworks. where there are 10 possible arguments to the task function_fn.
int taskSpawn
(
char * name,
int priority,
int options,
int stackSize,
FUNCPTR function_fn,
int arg1, /* 1st of 10 req'd task args to pass to func */
int arg2,
int arg3,
int arg4,
int arg5,
int arg6,
int arg7,
int arg8,
int arg9,
int arg10
)
but in Task_create of sysbios I see arg0 and arg1 (2 arguments only). I see elsewhere in the code capability of above number of arguments.
Pl. advise how to accomodate 10 arguments in the task_create().
Regards,
Hari