summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-03-12 03:42:08 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-03-12 03:42:08 +0000
commit95317af605c883b464a4c5b524632193614bfd24 (patch)
treee624625959a92777dd79d8949e46072752103ae9 /nuttx/ChangeLog
parentbf91815c3fd4be584af323447605624b33932f63 (diff)
downloadnuttx-95317af605c883b464a4c5b524632193614bfd24.tar.gz
nuttx-95317af605c883b464a4c5b524632193614bfd24.tar.bz2
nuttx-95317af605c883b464a4c5b524632193614bfd24.zip
Add SLIP driver
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3369 42af7a65-404d-4744-a932-0658087f49c3
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).