summaryrefslogtreecommitdiff
path: root/nuttx/libc/Kconfig
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-02-02 19:31:30 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-02-02 19:31:30 +0000
commit60185fe969614b01d5dc57f3aa157b24d2901af6 (patch)
treed63a6a6a97cae8d4fe62b41e900fbcd5c29aceaf /nuttx/libc/Kconfig
parentf1851b468b62b448a0d9ed343d4ca8b9987e0d53 (diff)
downloadnuttx-60185fe969614b01d5dc57f3aa157b24d2901af6.tar.gz
nuttx-60185fe969614b01d5dc57f3aa157b24d2901af6.tar.bz2
nuttx-60185fe969614b01d5dc57f3aa157b24d2901af6.zip
New interface task_spawn(); exec_builtin() now uses task_spawn(); All argv types should be char * const * not const char **
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5598 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/libc/Kconfig')
-rw-r--r--nuttx/libc/Kconfig23
1 files changed, 16 insertions, 7 deletions
diff --git a/nuttx/libc/Kconfig b/nuttx/libc/Kconfig
index 72a6a5346..3aee837c3 100644
--- a/nuttx/libc/Kconfig
+++ b/nuttx/libc/Kconfig
@@ -121,16 +121,25 @@ config EXECFUNCS_NSYMBOLS
symbols in that table. This selection provides the number of
symbols in the symbol table.
-config POSIX_SPAWN_STACKSIZE
- int "posix_spawn Stack Size"
+endif
+
+config POSIX_SPAWN_PROXY_STACKSIZE
+ int "Spawn Stack Size"
default 1024
---help---
- If posix_spawn[p] uses I/O redirection options, then it will require
- an intermediary/proxy task to muck with the file descriptors. This
- configuration item specifies the stack size used for the proxy. Default:
- 1024 bytes.
+ If posix_spawn[p]() and task_spawn() use I/O redirection options,
+ they will require an intermediary/proxy task to muck with the file
+ descriptors. This configuration item specifies the stack size
+ used for the proxy. Default: 1024 bytes.
-endif
+config TASK_SPAWN_DEFAULT_STACKSIZE
+ int "Default task_spawn Stack Size"
+ default 2048
+ ---help---
+ The actual size to use for the child task's stack can be set with
+ task_spawnattr_setstacksize(). This value specifies the default
+ stack size to use if task_spawnattr_setstacksize() is not used.
+ Default: 2048.
config LIBC_STRERROR
bool "Enable strerror"