argv parameter should be 'const'

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@130 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2007-03-23 16:03:28 +00:00
parent 30c1d1028d
commit a2c26f080a
3 changed files with 8 additions and 8 deletions

View File

@ -88,18 +88,18 @@ extern "C" {
#ifndef CONFIG_CUSTOM_STACK #ifndef CONFIG_CUSTOM_STACK
EXTERN STATUS task_init(FAR _TCB *tcb, const char *name, int priority, EXTERN STATUS task_init(FAR _TCB *tcb, const char *name, int priority,
FAR uint32 *stack, uint32 stack_size, FAR uint32 *stack, uint32 stack_size,
main_t entry, char *argv[]); main_t entry, const char *argv[]);
#else #else
EXTERN STATUS task_init(FAR _TCB *tcb, const char *name, int priority, EXTERN STATUS task_init(FAR _TCB *tcb, const char *name, int priority,
main_t entry, char *argv[]); main_t entry, const char *argv[]);
#endif #endif
EXTERN STATUS task_activate(FAR _TCB *tcb); EXTERN STATUS task_activate(FAR _TCB *tcb);
#ifndef CONFIG_CUSTOM_STACK #ifndef CONFIG_CUSTOM_STACK
EXTERN int task_create(const char *name, int priority, int stack_size, EXTERN int task_create(const char *name, int priority, int stack_size,
main_t entry, char *argv[]); main_t entry, const char *argv[]);
#else #else
EXTERN int task_create(const char *name, int priority, EXTERN int task_create(const char *name, int priority,
main_t entry, char *argv[]); main_t entry, const char *argv[]);
#endif #endif
EXTERN STATUS task_delete(pid_t pid); EXTERN STATUS task_delete(pid_t pid);
EXTERN STATUS task_restart(pid_t pid); EXTERN STATUS task_restart(pid_t pid);

View File

@ -108,10 +108,10 @@
#ifndef CONFIG_CUSTOM_STACK #ifndef CONFIG_CUSTOM_STACK
int task_create(const char *name, int priority, int task_create(const char *name, int priority,
int stack_size, main_t entry, char *argv[]) int stack_size, main_t entry, const char *argv[])
#else #else
int task_create(const char *name, int priority, int task_create(const char *name, int priority,
main_t entry, char *argv[]) main_t entry, const char *argv[])
#endif #endif
{ {
FAR _TCB *tcb; FAR _TCB *tcb;

View File

@ -106,10 +106,10 @@
#ifndef CONFIG_CUSTOM_STACK #ifndef CONFIG_CUSTOM_STACK
STATUS task_init(FAR _TCB *tcb, const char *name, int priority, STATUS task_init(FAR _TCB *tcb, const char *name, int priority,
FAR uint32 *stack, uint32 stack_size, FAR uint32 *stack, uint32 stack_size,
main_t entry, char *argv[]) main_t entry, const char *argv[])
#else #else
STATUS task_init(FAR _TCB *tcb, const char *name, int priority, STATUS task_init(FAR _TCB *tcb, const char *name, int priority,
main_t entry, char *argv[]) main_t entry, const char *argv[])
#endif #endif
{ {
STATUS ret; STATUS ret;