diff --git a/configs/cloudctrl/src/up_usb.c b/configs/cloudctrl/src/up_usb.c index 2ee9822f57..a5560be85f 100644 --- a/configs/cloudctrl/src/up_usb.c +++ b/configs/cloudctrl/src/up_usb.c @@ -195,7 +195,7 @@ int stm32_usbhost_initialize(void) pid = TASK_CREATE("usbhost", CONFIG_USBHOST_DEFPRIO, CONFIG_USBHOST_STACKSIZE, - (main_t)usbhost_waiter, (const char **)NULL); + (main_t)usbhost_waiter, (FAR char * const *)NULL); return pid < 0 ? -ENOEXEC : OK; } diff --git a/configs/olimex-lpc1766stk/src/up_nsh.c b/configs/olimex-lpc1766stk/src/up_nsh.c index f201c8a1b6..00c4be0b79 100644 --- a/configs/olimex-lpc1766stk/src/up_nsh.c +++ b/configs/olimex-lpc1766stk/src/up_nsh.c @@ -287,10 +287,10 @@ static int nsh_usbhostinitialize(void) #ifndef CONFIG_CUSTOM_STACK pid = task_create("usbhost", CONFIG_USBHOST_DEFPRIO, CONFIG_USBHOST_STACKSIZE, - (main_t)nsh_waiter, (const char **)NULL); + (main_t)nsh_waiter, (FAR char * const *)NULL); #else pid = task_create("usbhost", CONFIG_USBHOST_DEFPRIO, - (main_t)nsh_waiter, (const char **)NULL); + (main_t)nsh_waiter, (FAR char * const *)NULL); #endif return pid < 0 ? -ENOEXEC : OK; } diff --git a/configs/pic32-starterkit/src/up_nsh.c b/configs/pic32-starterkit/src/up_nsh.c index f0e745112c..02e6a93760 100644 --- a/configs/pic32-starterkit/src/up_nsh.c +++ b/configs/pic32-starterkit/src/up_nsh.c @@ -310,10 +310,10 @@ static int nsh_usbhostinitialize(void) #ifndef CONFIG_CUSTOM_STACK pid = task_create("usbhost", CONFIG_USBHOST_DEFPRIO, CONFIG_USBHOST_STACKSIZE, - (main_t)nsh_waiter, (const char **)NULL); + (main_t)nsh_waiter, (FAR char * const *)NULL); #else pid = task_create("usbhost", CONFIG_USBHOST_DEFPRIO, - (main_t)nsh_waiter, (const char **)NULL); + (main_t)nsh_waiter, (FAR char * const *)NULL); #endif return pid < 0 ? -ENOEXEC : OK; } diff --git a/configs/pic32mx7mmb/src/up_nsh.c b/configs/pic32mx7mmb/src/up_nsh.c index a1bfbeaa2f..6feb7a2e1d 100644 --- a/configs/pic32mx7mmb/src/up_nsh.c +++ b/configs/pic32mx7mmb/src/up_nsh.c @@ -318,10 +318,10 @@ static int nsh_usbhostinitialize(void) #ifndef CONFIG_CUSTOM_STACK pid = task_create("usbhost", CONFIG_USBHOST_DEFPRIO, CONFIG_USBHOST_STACKSIZE, - (main_t)nsh_waiter, (const char **)NULL); + (main_t)nsh_waiter, (FAR char * const *)NULL); #else pid = task_create("usbhost", CONFIG_USBHOST_DEFPRIO, - (main_t)nsh_waiter, (const char **)NULL); + (main_t)nsh_waiter, (FAR char * const *)NULL); #endif return pid < 0 ? -ENOEXEC : OK; } diff --git a/configs/shenzhou/src/up_usb.c b/configs/shenzhou/src/up_usb.c index 1cf8a39a7a..6c4d15d4b9 100644 --- a/configs/shenzhou/src/up_usb.c +++ b/configs/shenzhou/src/up_usb.c @@ -194,7 +194,7 @@ int stm32_usbhost_initialize(void) pid = TASK_CREATE("usbhost", CONFIG_USBHOST_DEFPRIO, CONFIG_USBHOST_STACKSIZE, - (main_t)usbhost_waiter, (const char **)NULL); + (main_t)usbhost_waiter, (FAR char * const *)NULL); return pid < 0 ? -ENOEXEC : OK; } diff --git a/configs/sim/nsh/defconfig b/configs/sim/nsh/defconfig index 6b0b8400aa..61fe18a440 100644 --- a/configs/sim/nsh/defconfig +++ b/configs/sim/nsh/defconfig @@ -295,7 +295,7 @@ CONFIG_EOL_IS_EITHER_CRLF=y CONFIG_LIBC_EXECFUNCS=y CONFIG_EXECFUNCS_SYMTAB="g_symtab" CONFIG_EXECFUNCS_NSYMBOLS=0 -CONFIG_POSIX_SPAWN_STACKSIZE=1024 +CONFIG_POSIX_SPAWN_PROXY_STACKSIZE=1024 # CONFIG_LIBC_STRERROR is not set # CONFIG_LIBC_PERROR_STDOUT is not set CONFIG_ARCH_LOWPUTC=y diff --git a/configs/stm3220g-eval/src/up_usb.c b/configs/stm3220g-eval/src/up_usb.c index 64fdda6f86..2ca9b31cb7 100644 --- a/configs/stm3220g-eval/src/up_usb.c +++ b/configs/stm3220g-eval/src/up_usb.c @@ -194,7 +194,7 @@ int stm32_usbhost_initialize(void) pid = TASK_CREATE("usbhost", CONFIG_USBHOST_DEFPRIO, CONFIG_USBHOST_STACKSIZE, - (main_t)usbhost_waiter, (const char **)NULL); + (main_t)usbhost_waiter, (FAR char * const *)NULL); return pid < 0 ? -ENOEXEC : OK; } diff --git a/configs/stm3240g-eval/src/up_usb.c b/configs/stm3240g-eval/src/up_usb.c index 294fd661e3..bc315a527d 100644 --- a/configs/stm3240g-eval/src/up_usb.c +++ b/configs/stm3240g-eval/src/up_usb.c @@ -194,7 +194,7 @@ int stm32_usbhost_initialize(void) pid = TASK_CREATE("usbhost", CONFIG_USBHOST_DEFPRIO, CONFIG_USBHOST_STACKSIZE, - (main_t)usbhost_waiter, (const char **)NULL); + (main_t)usbhost_waiter, (FAR char * const *)NULL); return pid < 0 ? -ENOEXEC : OK; } diff --git a/configs/stm32f4discovery/posix_spawn/defconfig b/configs/stm32f4discovery/posix_spawn/defconfig index 97cf84ab46..b365f735d6 100644 --- a/configs/stm32f4discovery/posix_spawn/defconfig +++ b/configs/stm32f4discovery/posix_spawn/defconfig @@ -442,7 +442,7 @@ CONFIG_EOL_IS_EITHER_CRLF=y CONFIG_LIBC_EXECFUNCS=y CONFIG_EXECFUNCS_SYMTAB="exports" CONFIG_EXECFUNCS_NSYMBOLS=10 -CONFIG_POSIX_SPAWN_STACKSIZE=1024 +CONFIG_POSIX_SPAWN_PROXY_STACKSIZE=1024 # CONFIG_LIBC_STRERROR is not set # CONFIG_LIBC_PERROR_STDOUT is not set CONFIG_ARCH_LOWPUTC=y diff --git a/configs/stm32f4discovery/src/up_usb.c b/configs/stm32f4discovery/src/up_usb.c index 89fc960062..653dd9a885 100644 --- a/configs/stm32f4discovery/src/up_usb.c +++ b/configs/stm32f4discovery/src/up_usb.c @@ -194,7 +194,7 @@ int stm32_usbhost_initialize(void) pid = TASK_CREATE("usbhost", CONFIG_USBHOST_DEFPRIO, CONFIG_USBHOST_STACKSIZE, - (main_t)usbhost_waiter, (const char **)NULL); + (main_t)usbhost_waiter, (FAR char * const *)NULL); return pid < 0 ? -ENOEXEC : OK; } diff --git a/configs/sure-pic32mx/src/up_nsh.c b/configs/sure-pic32mx/src/up_nsh.c index 94ae10d219..548ade02be 100644 --- a/configs/sure-pic32mx/src/up_nsh.c +++ b/configs/sure-pic32mx/src/up_nsh.c @@ -289,10 +289,10 @@ static int nsh_usbhostinitialize(void) #ifndef CONFIG_CUSTOM_STACK pid = task_create("usbhost", CONFIG_USBHOST_DEFPRIO, CONFIG_USBHOST_STACKSIZE, - (main_t)nsh_waiter, (const char **)NULL); + (main_t)nsh_waiter, (FAR char * const *)NULL); #else pid = task_create("usbhost", CONFIG_USBHOST_DEFPRIO, - (main_t)nsh_waiter, (const char **)NULL); + (main_t)nsh_waiter, (FAR char * const *)NULL); #endif return pid < 0 ? -ENOEXEC : OK; }