summaryrefslogtreecommitdiff
path: root/nuttx/Documentation
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/Documentation')
-rw-r--r--nuttx/Documentation/NuttX.html5
-rw-r--r--nuttx/Documentation/NuttxPortingGuide.html15
2 files changed, 18 insertions, 2 deletions
diff --git a/nuttx/Documentation/NuttX.html b/nuttx/Documentation/NuttX.html
index 044938d8d..f47a76af8 100644
--- a/nuttx/Documentation/NuttX.html
+++ b/nuttx/Documentation/NuttX.html
@@ -8,7 +8,7 @@
<tr align="center" bgcolor="#e4e4e4">
<td>
<h1><big><font color="#3c34ec"><i>NuttX RTOS</i></font></big></h1>
- <p>Last Updated: June 14, 2009</p>
+ <p>Last Updated: June 15, 2009</p>
</td>
</tr>
</table>
@@ -1471,6 +1471,9 @@ buildroot-0.1.6 2009-xx-xx &lt;spudmonkey@racsa.co.cr&gt;
nuttx-0.4.9 2009-xx-xx Gregory Nutt &lt;spudmonkey@racsa.co.cr&gt;
* 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 &lt;spudmonkey@racsa.co.cr&gt;
diff --git a/nuttx/Documentation/NuttxPortingGuide.html b/nuttx/Documentation/NuttxPortingGuide.html
index 02155fe12..23eeb5cb9 100644
--- a/nuttx/Documentation/NuttxPortingGuide.html
+++ b/nuttx/Documentation/NuttxPortingGuide.html
@@ -12,7 +12,7 @@
<h1><big><font color="#3c34ec">
<i>NuttX RTOS Porting Guide</i>
</font></big></h1>
- <p>Last Updated: May 28, 2009</p>
+ <p>Last Updated: June 15, 2009</p>
</td>
</tr>
</table>
@@ -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.
</li>
+ <li>
+ <code>CONFIG_FDCLONE_DISABLE</code>: Disable cloning of all file descriptors
+ by task_create() when a new task is started.
+ </li>
+ <li>
+ <code>CONFIG_FDCLONE_STDIO</code>: Disable cloning of all but the first
+ three file descriptors (stdin, stdout, stderr) by task_create()
+ when a new task is started.
+ </li>
+ <li>
+ <code>CONFIG_SDCLONE_DISABLE</code>: Disable cloning of all socket
+ desciptors by task_create() when a new task is started.
+ </li>
</ul>
<p>