From a06b28b245b19a0a2a9b97f43961796848a1c068 Mon Sep 17 00:00:00 2001 From: patacongo Date: Sat, 12 Mar 2011 03:42:08 +0000 Subject: [PATCH] Add SLIP driver git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3369 42af7a65-404d-4744-a932-0658087f49c3 --- Documentation/NuttX.html | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Documentation/NuttX.html b/Documentation/NuttX.html index a3763dcef5..a110d5ff28 100644 --- a/Documentation/NuttX.html +++ b/Documentation/NuttX.html @@ -2166,6 +2166,14 @@ nuttx-5.19 2011-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr> 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). pascal-2.1 2011-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>