diff --git a/Documentation/NuttX.html b/Documentation/NuttX.html index e81c390864..c11317ecca 100644 --- a/Documentation/NuttX.html +++ b/Documentation/NuttX.html @@ -8,7 +8,7 @@

NuttX RTOS

-

Last Updated: August 30, 2008

+

Last Updated: September 1, 2008

@@ -1062,8 +1062,11 @@ nuttx-0.3.13 2008-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr> * Added telnet NSH configuration for Neuros OSD. * Basic integration of concurrent telnet/serial NSH functional on Neuros OSD. - * Fixed a critical bug that effects the way that environement variables are + * Fixed a critical bug that effects the way that environment variables are shared amongst pthreads. + * uIP port enhance to support multi-threaded, concurrent socket access. So, + for example, one thread can be reading from a socket while another is + writing to the socket. pascal-0.1.3 2008-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr> diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html index 4c07bbba76..939ba8bdcb 100644 --- a/Documentation/NuttxPortingGuide.html +++ b/Documentation/NuttxPortingGuide.html @@ -16,7 +16,7 @@

by

Gregory Nutt

-

Last Update: July 21, 2008

+

Last Update: September 1, 2008

Table of Contents

@@ -1527,6 +1527,10 @@ The system can be re-made subsequently by just typing make.
  • CONFIG_NSOCKET_DESCRIPTORS: Maximum number of socket descriptors per task/thread.
  • +
  • + CONFIG_NET_NACTIVESOCKETS: Maximum number of concurrent socket operations (recv, send, etc.). + Default: CONFIG_NET_TCP_CONNS+CONFIG_NET_UDP_CONNS. +
  • CONFIG_NET_SOCKOPTS: Enable or disable support for socket options.