summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-11-11 11:54:32 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-11-11 11:54:32 -0600
commit4da30b828965467ed5efb35eb9a5b901d3ed40e4 (patch)
tree4702f5018ecf38204d2483bf97106fb3992e1d9c /nuttx/ChangeLog
parente614814eb45be55922eaa60747177a53163c2bd7 (diff)
downloadnuttx-4da30b828965467ed5efb35eb9a5b901d3ed40e4.tar.gz
nuttx-4da30b828965467ed5efb35eb9a5b901d3ed40e4.tar.bz2
nuttx-4da30b828965467ed5efb35eb9a5b901d3ed40e4.zip
Update ChangeLog
Diffstat (limited to 'nuttx/ChangeLog')
-rwxr-xr-xnuttx/ChangeLog8
1 files changed, 7 insertions, 1 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index cc7306b5d..9f9dd0d8f 100755
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -8924,4 +8924,10 @@
(2014-11-10).
* sched/wdog/wd_create.c: Fix an important bug in the watchdog creation
logic (2014-11-10).
-
+ * include/unistd.h, libc/unistd/lib_access.c and Make.defs: From Lorenz
+ Meier: The implementation of access() as vararg macro has the issue that
+ any function call with the same name (even in a C++ class) will match
+ with it and result in a compile error. I have replaced it with a small
+ 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).