Add conditional compilation to eliminate or limit cloning of descriptors when a new task is created
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1886 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
377ec1d1bb
commit
31357e299a
@ -216,12 +216,16 @@ defconfig -- This is a configuration file similar to the Linux
|
||||
to zero if no more than one thread is expected to wait for
|
||||
a semaphore.
|
||||
CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
by task_create() when a new task is started.
|
||||
by task_create() when a new task is started. If set, all
|
||||
files/drivers will appear to be closed in the new task.
|
||||
CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
when a new task is started.
|
||||
when a new task is started. If set, all files/drivers will
|
||||
appear to be closed in the new task except for stdin, stdout,
|
||||
and stderr.
|
||||
CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
desciptors by task_create() when a new task is started.
|
||||
desciptors by task_create() when a new task is started. If
|
||||
set, all sockets will appear to be closed in the new task.
|
||||
|
||||
The following can be used to disable categories of APIs supported
|
||||
by the OS. If the compiler supports weak functions, then it
|
||||
|
@ -169,6 +169,31 @@ CONFIG_HAVE_LIBM=n
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=ostest
|
||||
CONFIG_DEBUG=n
|
||||
@ -186,6 +211,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=n
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -169,6 +169,31 @@ CONFIG_HAVE_LIBM=n
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=uip
|
||||
CONFIG_DEBUG=n
|
||||
@ -186,6 +211,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=n
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -169,6 +169,31 @@ CONFIG_NET_C5471_BASET10=n
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=nettest
|
||||
CONFIG_DEBUG=n
|
||||
@ -186,6 +211,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=n
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -169,6 +169,31 @@ CONFIG_HAVE_LIBM=n
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=nsh
|
||||
CONFIG_DEBUG=n
|
||||
@ -186,6 +211,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=n
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -222,6 +222,31 @@ CONFIG_HAVE_LIBM=n
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=uip
|
||||
CONFIG_DEBUG=n
|
||||
@ -240,6 +265,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=y
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -222,6 +222,31 @@ CONFIG_HAVE_LIBM=n
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=nettest
|
||||
CONFIG_DEBUG=y
|
||||
@ -240,6 +265,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=y
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -222,6 +222,31 @@ CONFIG_HAVE_LIBM=n
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=nsh
|
||||
CONFIG_DEBUG=n
|
||||
@ -239,6 +264,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=n
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -222,6 +222,31 @@ CONFIG_HAVE_LIBM=n
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=ostest
|
||||
CONFIG_DEBUG=n
|
||||
@ -239,6 +264,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=y
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -206,6 +206,31 @@ CONFIG_HAVE_LIBM=n
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=ostest
|
||||
CONFIG_DEBUG=y
|
||||
@ -224,6 +249,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=y
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -212,17 +212,30 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of different
|
||||
# threads (minus one) that can take counts on a semaphore with priority
|
||||
# inheritance support. This may be set to zero if priority inheritance
|
||||
# is disabled OR if you are only using semaphores as mutexes (only
|
||||
# one holder) OR if no more than two threads participate using a
|
||||
# counting semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled, then this
|
||||
# setting is the maximum number of higher priority threads (minus 1)
|
||||
# than can be waiting for another thread to release a count on a
|
||||
# semaphore. This value may be set to zero if no more than one
|
||||
# thread is expected to wait for a semaphore.
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=dhcpd
|
||||
CONFIG_DEBUG=y
|
||||
@ -244,6 +257,9 @@ CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -212,17 +212,30 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of different
|
||||
# threads (minus one) that can take counts on a semaphore with priority
|
||||
# inheritance support. This may be set to zero if priority inheritance
|
||||
# is disabled OR if you are only using semaphores as mutexes (only
|
||||
# one holder) OR if no more than two threads participate using a
|
||||
# counting semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled, then this
|
||||
# setting is the maximum number of higher priority threads (minus 1)
|
||||
# than can be waiting for another thread to release a count on a
|
||||
# semaphore. This value may be set to zero if no more than one
|
||||
# thread is expected to wait for a semaphore.
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=uip
|
||||
CONFIG_DEBUG=y
|
||||
@ -244,6 +257,9 @@ CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -212,17 +212,30 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of different
|
||||
# threads (minus one) that can take counts on a semaphore with priority
|
||||
# inheritance support. This may be set to zero if priority inheritance
|
||||
# is disabled OR if you are only using semaphores as mutexes (only
|
||||
# one holder) OR if no more than two threads participate using a
|
||||
# counting semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled, then this
|
||||
# setting is the maximum number of higher priority threads (minus 1)
|
||||
# than can be waiting for another thread to release a count on a
|
||||
# semaphore. This value may be set to zero if no more than one
|
||||
# thread is expected to wait for a semaphore.
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=nettest
|
||||
CONFIG_DEBUG=y
|
||||
@ -244,6 +257,9 @@ CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -212,17 +212,30 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of different
|
||||
# threads (minus one) that can take counts on a semaphore with priority
|
||||
# inheritance support. This may be set to zero if priority inheritance
|
||||
# is disabled OR if you are only using semaphores as mutexes (only
|
||||
# one holder) OR if no more than two threads participate using a
|
||||
# counting semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled, then this
|
||||
# setting is the maximum number of higher priority threads (minus 1)
|
||||
# than can be waiting for another thread to release a count on a
|
||||
# semaphore. This value may be set to zero if no more than one
|
||||
# thread is expected to wait for a semaphore.
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=nsh
|
||||
CONFIG_DEBUG=y
|
||||
@ -244,6 +257,9 @@ CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -210,17 +210,30 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of different
|
||||
# threads (minus one) that can take counts on a semaphore with priority
|
||||
# inheritance support. This may be set to zero if priority inheritance
|
||||
# is disabled OR if you are only using semaphores as mutexes (only
|
||||
# one holder) OR if no more than two threads participate using a
|
||||
# counting semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled, then this
|
||||
# setting is the maximum number of higher priority threads (minus 1)
|
||||
# than can be waiting for another thread to release a count on a
|
||||
# semaphore. This value may be set to zero if no more than one
|
||||
# thread is expected to wait for a semaphore.
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=ostest
|
||||
CONFIG_DEBUG=y
|
||||
@ -241,6 +254,9 @@ CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -212,17 +212,30 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of different
|
||||
# threads (minus one) that can take counts on a semaphore with priority
|
||||
# inheritance support. This may be set to zero if priority inheritance
|
||||
# is disabled OR if you are only using semaphores as mutexes (only
|
||||
# one holder) OR if no more than two threads participate using a
|
||||
# counting semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled, then this
|
||||
# setting is the maximum number of higher priority threads (minus 1)
|
||||
# than can be waiting for another thread to release a count on a
|
||||
# semaphore. This value may be set to zero if no more than one
|
||||
# thread is expected to wait for a semaphore.
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=poll
|
||||
CONFIG_DEBUG=y
|
||||
@ -244,6 +257,9 @@ CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -140,6 +140,31 @@ CONFIG_HAVE_LIBM=n
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=ostest
|
||||
CONFIG_DEBUG=n
|
||||
@ -157,6 +182,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=n
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -173,6 +173,31 @@ CONFIG_HAVE_LIBM=n
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=nsh
|
||||
CONFIG_DEBUG=n
|
||||
@ -190,6 +215,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=n
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -169,6 +169,35 @@ CONFIG_HAVE_LIBM=n
|
||||
# provides /dev/console. Enables stdout, stderr, stdin.
|
||||
# CONFIG_DEV_LOWCONSOLE - Use the simple, low-level serial console
|
||||
# driver (minimul support)
|
||||
# CONFIG_MUTEX_TYPES: Set to enable support for recursive and
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=ostest
|
||||
CONFIG_DEBUG=n
|
||||
@ -186,6 +215,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=y
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -173,6 +173,31 @@ CONFIG_HAVE_LIBM=n
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=usbserial
|
||||
CONFIG_DEBUG=n
|
||||
@ -191,6 +216,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=n
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -173,6 +173,31 @@ CONFIG_HAVE_LIBM=n
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=usbstorage
|
||||
CONFIG_DEBUG=n
|
||||
@ -191,6 +216,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=n
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -180,6 +180,31 @@ CONFIG_HAVE_LIBM=n
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=ostest
|
||||
CONFIG_DEBUG=n
|
||||
@ -197,6 +222,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=n
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -157,6 +157,31 @@ CONFIG_HAVE_LIBM=n
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=nettest
|
||||
CONFIG_DEBUG=n
|
||||
@ -174,6 +199,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=n
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -157,6 +157,31 @@ CONFIG_HAVE_LIBM=n
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=nsh
|
||||
CONFIG_DEBUG=n
|
||||
@ -174,6 +199,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=n
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -157,6 +157,31 @@ CONFIG_HAVE_LIBM=n
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=ostest
|
||||
CONFIG_DEBUG=n
|
||||
@ -174,6 +199,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=n
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -157,6 +157,31 @@ CONFIG_HAVE_LIBM=n
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=poll
|
||||
CONFIG_DEBUG=n
|
||||
@ -174,6 +199,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=n
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -157,6 +157,31 @@ CONFIG_HAVE_LIBM=n
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=udp
|
||||
CONFIG_DEBUG=n
|
||||
@ -174,6 +199,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=n
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -157,6 +157,31 @@ CONFIG_HAVE_LIBM=n
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=uip
|
||||
CONFIG_DEBUG=n
|
||||
@ -174,6 +199,11 @@ CONFIG_DEV_CONSOLE=n
|
||||
CONFIG_DEV_LOWCONSOLE=n
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -240,6 +240,31 @@ CONFIG_HAVE_LIBM=n
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=nsh
|
||||
CONFIG_DEBUG=n
|
||||
@ -257,6 +282,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=n
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -240,6 +240,31 @@ CONFIG_HAVE_LIBM=n
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=ostest
|
||||
CONFIG_DEBUG=n
|
||||
@ -257,6 +282,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=y
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -137,6 +137,31 @@ CONFIG_HAVE_LIBM=n
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=ostest
|
||||
CONFIG_DEBUG=n
|
||||
@ -154,6 +179,11 @@ CONFIG_DEV_CONSOLE=n
|
||||
CONFIG_DEV_LOWCONSOLE=n
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -86,6 +86,31 @@ CONFIG_ARCH_BOARD_SIM=y
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=mount
|
||||
CONFIG_DEBUG=y
|
||||
@ -103,6 +128,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=n
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -86,6 +86,31 @@ CONFIG_ARCH_BOARD_SIM=y
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=nettest
|
||||
CONFIG_DEBUG=n
|
||||
@ -103,6 +128,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=n
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -86,6 +86,31 @@ CONFIG_ARCH_BOARD_SIM=y
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=nsh
|
||||
CONFIG_DEBUG=y
|
||||
@ -103,6 +128,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=n
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -93,6 +93,31 @@ CONFIG_SIM_FBBPP=8
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=nx
|
||||
CONFIG_DEBUG=y
|
||||
@ -111,6 +136,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=n
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -89,6 +89,35 @@ CONFIG_SIM_FBBPP=32
|
||||
# provides /dev/console. Enables stdout, stderr, stdin.
|
||||
# CONFIG_DEV_LOWCONSOLE - Use the simple, low-level serial console
|
||||
# driver (minimul support)
|
||||
# CONFIG_MUTEX_TYPES: Set to enable support for recursive and
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=nx
|
||||
CONFIG_DEBUG=y
|
||||
@ -105,6 +134,13 @@ CONFIG_START_DAY=28
|
||||
CONFIG_JULIAN_TIME=n
|
||||
CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=n
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -87,17 +87,30 @@ CONFIG_ARCH_BOARD_SIM=y
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of different
|
||||
# threads (minus one) that can take counts on a semaphore with priority
|
||||
# inheritance support. This may be set to zero if priority inheritance
|
||||
# is disabled OR if you are only using semaphores as mutexes (only
|
||||
# one holder) OR if no more than two threads participate using a
|
||||
# counting semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled, then this
|
||||
# setting is the maximum number of higher priority threads (minus 1)
|
||||
# than can be waiting for another thread to release a count on a
|
||||
# semaphore. This value may be set to zero if no more than one
|
||||
# thread is expected to wait for a semaphore.
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=ostest
|
||||
CONFIG_DEBUG=y
|
||||
@ -117,6 +130,9 @@ CONFIG_MUTEX_TYPES=y
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -86,6 +86,31 @@ CONFIG_ARCH_BOARD_SIM=y
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=pashello
|
||||
CONFIG_DEBUG=n
|
||||
@ -103,6 +128,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=n
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -184,6 +184,31 @@ CONFIG_HAVE_LIBM=n
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=ostest
|
||||
CONFIG_DEBUG=n
|
||||
@ -201,6 +226,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=y
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -188,6 +188,31 @@ CONFIG_HAVE_LIBM=n
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=nsh
|
||||
CONFIG_DEBUG=n
|
||||
@ -205,6 +230,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=n
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -188,6 +188,31 @@ CONFIG_HAVE_LIBM=n
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=ostest
|
||||
CONFIG_DEBUG=n
|
||||
@ -205,6 +230,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=y
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -132,6 +132,31 @@ CONFIG_LINKER_ROM_AT_0000=y
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=nsh
|
||||
CONFIG_DEBUG=n
|
||||
@ -150,6 +175,11 @@ CONFIG_DEV_CONSOLE=n
|
||||
CONFIG_DEV_LOWCONSOLE=n
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -132,6 +132,31 @@ CONFIG_LINKER_ROM_AT_0000=y
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=ostest
|
||||
CONFIG_DEBUG=n
|
||||
@ -150,6 +175,11 @@ CONFIG_DEV_CONSOLE=n
|
||||
CONFIG_DEV_LOWCONSOLE=n
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -132,6 +132,31 @@ CONFIG_LINKER_ROM_AT_0000=y
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=pashello
|
||||
CONFIG_DEBUG=n
|
||||
@ -150,6 +175,11 @@ CONFIG_DEV_CONSOLE=n
|
||||
CONFIG_DEV_LOWCONSOLE=n
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -161,6 +161,31 @@ CONFIG_HAVE_LIBM=n
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=ostest
|
||||
CONFIG_DEBUG=y
|
||||
@ -178,6 +203,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=y
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -161,6 +161,31 @@ CONFIG_HAVE_LIBM=n
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=pashello
|
||||
CONFIG_DEBUG=y
|
||||
@ -178,6 +203,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=y
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -122,6 +122,31 @@ CONFIG_HAVE_LIBM=n
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=nsh
|
||||
CONFIG_DEBUG=n
|
||||
@ -140,6 +165,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=n
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -122,6 +122,31 @@ CONFIG_HAVE_LIBM=n
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=ostest
|
||||
CONFIG_DEBUG=n
|
||||
@ -140,6 +165,11 @@ CONFIG_DEV_CONSOLE=n
|
||||
CONFIG_DEV_LOWCONSOLE=n
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -122,6 +122,31 @@ CONFIG_HAVE_LIBM=n
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=pashello
|
||||
CONFIG_DEBUG=n
|
||||
@ -140,6 +165,11 @@ CONFIG_DEV_CONSOLE=y
|
||||
CONFIG_DEV_LOWCONSOLE=n
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -156,6 +156,31 @@ CONFIG_HAVE_LIBM=n
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=ostest
|
||||
CONFIG_DEBUG=y
|
||||
@ -174,6 +199,11 @@ CONFIG_DEV_CONSOLE=n
|
||||
CONFIG_DEV_LOWCONSOLE=n
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
@ -156,6 +156,31 @@ CONFIG_HAVE_LIBM=n
|
||||
# errorcheck mutexes. Enables pthread_mutexattr_settype().
|
||||
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
|
||||
# inheritance on mutexes and semaphores.
|
||||
# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
|
||||
# inheritance is enabled. It defines the maximum number of
|
||||
# different threads (minus one) that can take counts on a
|
||||
# semaphore with priority inheritance support. This may be
|
||||
# set to zero if priority inheritance is disabled OR if you
|
||||
# are only using semaphores as mutexes (only one holder) OR
|
||||
# if no more than two threads participate using a counting
|
||||
# semaphore.
|
||||
# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled,
|
||||
# then this setting is the maximum number of higher priority
|
||||
# threads (minus 1) than can be waiting for another thread
|
||||
# to release a count on a semaphore. This value may be set
|
||||
# to zero if no more than one thread is expected to wait for
|
||||
# a semaphore.
|
||||
# CONFIG_FDCLONE_DISABLE. Disable cloning of all file descriptors
|
||||
# by task_create() when a new task is started. If set, all
|
||||
# files/drivers will appear to be closed in the new task.
|
||||
# CONFIG_FDCLONE_STDIO. Disable cloning of all but the first
|
||||
# three file descriptors (stdin, stdout, stderr) by task_create()
|
||||
# when a new task is started. If set, all files/drivers will
|
||||
# appear to be closed in the new task except for stdin, stdout,
|
||||
# and stderr.
|
||||
# CONFIG_SDCLONE_DISABLE. Disable cloning of all socket
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
CONFIG_EXAMPLE=ostest
|
||||
CONFIG_DEBUG=y
|
||||
@ -174,6 +199,11 @@ CONFIG_DEV_CONSOLE=n
|
||||
CONFIG_DEV_LOWCONSOLE=n
|
||||
CONFIG_MUTEX_TYPES=n
|
||||
CONFIG_PRIORITY_INHERITANCE=n
|
||||
CONFIG_SEM_PREALLOCHOLDERS=0
|
||||
CONFIG_SEM_NNESTPRIO=0
|
||||
CONFIG_FDCLONE_DISABLE=n
|
||||
CONFIG_FDCLONE_STDIO=n
|
||||
CONFIG_SDCLONE_DISABLE=y
|
||||
|
||||
#
|
||||
# The following can be used to disable categories of
|
||||
|
Loading…
Reference in New Issue
Block a user