summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
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/ChangeLog
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/ChangeLog')
-rw-r--r--nuttx/ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index ea4f976a6..9ca7f0aab 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -6289,3 +6289,9 @@
interrupts, the stack pointer must be used so that when it is
decremented, the contents on the stack are protected from the nested
interrupt handling (2013-12-23).
+ * arch/Kconfig: The CONFIG_ARCH_INT_DISABLEALL feature is disabled (i.e.,
+ depends on EXPERIMENTAL). That is because the current implementation
+ will not work because interrupts get disabled in the interrupt handler
+ too, defeating the nesting of interrupts. The fix is easy: It just
+ needs more levels of priority of disabling interrupts vs interrupt
+ handling (2013-12-23).