summaryrefslogtreecommitdiff
path: root/nuttx/arch/Kconfig
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-12-23 14:15:11 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-12-23 14:15:11 -0600
commit0b8ab9a73dd0a21bc659eefbc934b3c7cc969112 (patch)
treebb3233b0182bb0dfd688beeea51066bc546d6b38 /nuttx/arch/Kconfig
parent92fd02fcc98084502fad0d251b50d6f9261da353 (diff)
downloadnuttx-0b8ab9a73dd0a21bc659eefbc934b3c7cc969112.tar.gz
nuttx-0b8ab9a73dd0a21bc659eefbc934b3c7cc969112.tar.bz2
nuttx-0b8ab9a73dd0a21bc659eefbc934b3c7cc969112.zip
Disable CONFIG_ARCH_INT_DISABLEALL: It does not work in its current form
Diffstat (limited to 'nuttx/arch/Kconfig')
-rw-r--r--nuttx/arch/Kconfig7
1 files changed, 6 insertions, 1 deletions
diff --git a/nuttx/arch/Kconfig b/nuttx/arch/Kconfig
index 5b3fee8b7..e4a09b308 100644
--- a/nuttx/arch/Kconfig
+++ b/nuttx/arch/Kconfig
@@ -301,7 +301,7 @@ config ARCH_HIPRI_INTERRUPT
config ARCH_INT_DISABLEALL
bool "Disable high priority interrupts"
default y
- depends on ARCH_HIPRI_INTERRUPT
+ depends on ARCH_HIPRI_INTERRUPT && EXPERIMENTAL
---help---
If ARCH_HIPRI_INTERRUPT is defined, then special high priority
interrupts are supported. These are not "nested" in the normal
@@ -331,6 +331,11 @@ config ARCH_INT_DISABLEALL
| | MAXNORMAL |
----------------------------+--------------+--------------+-------------
+ NOTE: This does not work now because interrupts get disabled in the
+ standard interrupt handling, prohibiting nesting. Fix is simple: Need
+ to used more priority levels so that we can make a cleaner distinction
+ with the standard interrupt handler.
+
comment "Boot options"
choice