summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 0306a28de..75062412c 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -1542,3 +1542,11 @@
But, during development, you might want to have you applications
available and executable from the NSH command line. This apps/ addon
(and NSH hooks) was contributed by Uros to accomplish just that.
+ * sched/sched_waitpid() and include/sys/wait.h - Provides a simple and
+ very incomplete implementation of waitpid(). waitpid() is only available
+ if CONFIG_SCHED_WAITPID is defined in your configuration file.
+ * sched/atexit.c and sched/exit.c - The atexit function is not frequently
+ used. In order to save a few bytes, it is now conditioned on
+ CONFIG_SCHED_ATEXIT. It your application is currently using atexit(),
+ you will need to add CONFIG_SCHED_ATEXT to your configuration file.
+ * drivers/net/slip.c - Add a SLIP driver (untested on initial check-in).