summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-11-12 07:52:31 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-11-12 07:52:31 -0600
commit3e77986a862836ddad3f82a6fd0a715c25e16631 (patch)
tree02c2b3e8af376340e1891a76f62be25135b81452 /nuttx/ChangeLog
parent76343b27989de3081579ef5ab5ff1dd3b238563e (diff)
downloadnuttx-3e77986a862836ddad3f82a6fd0a715c25e16631.tar.gz
nuttx-3e77986a862836ddad3f82a6fd0a715c25e16631.tar.bz2
nuttx-3e77986a862836ddad3f82a6fd0a715c25e16631.zip
Update ChangeLog
Diffstat (limited to 'nuttx/ChangeLog')
-rwxr-xr-xnuttx/ChangeLog20
1 files changed, 20 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 9f9dd0d8f..accfa3b37 100755
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -8931,3 +8931,23 @@
function, and tried to have decent documentation as well. This resolves
the compile issue, and shouldn’t have negative side effects for users
of the function (2014-11-11).
+ * mm/mm_gran/mm_granrelease.c: If the INTR granule allocator mode is
+ enabled, there is no semaphore to destroy. From Lorenz Meier (2014-11-12).
+ * fs/nxffs/nxffs_dump.c: Fix problems with redefinitions of fdb macro.
+ With the fix to the syslog prototype, a LOG priority must now be the
+ first parameter. Fixed by replacing all occurrences of fdbg with
+ syslog(LOG_DEBUG, and eliminating the macro redefinitions. Noted by
+ Sebastien Lorquet (2014-11-12).
+ * arch/arm/src/common/up_internal.h: Add protection from C++ name
+ mangling in the ARM up_internal.h. From Lorenz Meier (2014-11-12).
+ * include/nuttx/compiler.h: Defines inline functions as not
+ instrumented - this is relevant for anyone using instrumentation. From
+ Lorenz Meier (2014-11-12).
+ * libc/string/lib_strncpy.c: The definition of strncpy() is that empty
+ space should be zero-filled, the patch adds the zero filling (I didn’t
+ know this, see e.g. the POSIX spec here:
+ http://pubs.opengroup.org/onlinepubs/7908799/xsh/strncpy.html). From
+ Lorenz Meier (2014-11-12).
+ * arch/arm/include/limits.h: Remove the definition of INT_FAST32_MIN
+ which is already defined in stdint.h (the correct location). From
+ Lorenz Meier (2014-11-12).