diff --git a/Documentation/NuttX.html b/Documentation/NuttX.html index 044938d8d9c..f47a76af882 100644 --- a/Documentation/NuttX.html +++ b/Documentation/NuttX.html @@ -8,7 +8,7 @@

NuttX RTOS

-

Last Updated: June 14, 2009

+

Last Updated: June 15, 2009

@@ -1471,6 +1471,9 @@ buildroot-0.1.6 2009-xx-xx <spudmonkey@racsa.co.cr> nuttx-0.4.9 2009-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr> * Add strtoll() and strtoull(); Add macros for atol() and atoll(). + * dup() and dup2() will now clone socket descriptors + * All socket descriptors ar now cloned when when a new task is started + via task_create(). pascal-0.1.3 2009-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr> diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html index 02155fe1266..23eeb5cb9ef 100644 --- a/Documentation/NuttxPortingGuide.html +++ b/Documentation/NuttxPortingGuide.html @@ -12,7 +12,7 @@

NuttX RTOS Porting Guide

-

Last Updated: May 28, 2009

+

Last Updated: June 15, 2009

@@ -2065,6 +2065,19 @@ extern void up_ledoff(int led); This value may be set to zero if no more than one thread is expected to wait for a semaphore. +
  • + CONFIG_FDCLONE_DISABLE: Disable cloning of all file descriptors + by task_create() when a new task is started. +
  • +
  • + CONFIG_FDCLONE_STDIO: Disable cloning of all but the first + three file descriptors (stdin, stdout, stderr) by task_create() + when a new task is started. +
  • +
  • + CONFIG_SDCLONE_DISABLE: Disable cloning of all socket + desciptors by task_create() when a new task is started. +