diff --git a/Documentation/NuttXNxFlat.html b/Documentation/NuttXNxFlat.html
index 2e6d2f59a8..3a2ed80460 100644
--- a/Documentation/NuttXNxFlat.html
+++ b/Documentation/NuttXNxFlat.html
@@ -407,7 +407,7 @@ any following arguments.
nuttx/syscall/syscall.csv
that describes the NuttX RTOS interface, and
nuttx/lib/lib/csv
that describes the NuttX C library interface.
+ nuttx/libc/lib.csv
that describes the NuttX C library interface.
@@ -424,7 +424,7 @@ Where:
cd nuttx/tools -cat ../syscall/syscall.csv ../lib/lib.csv | sort >tmp.csv +cat ../syscall/syscall.csv ../libc/lib.csv | sort >tmp.csv ./mksymtab.exe tmp.csv tmp.cdiff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html index a2c58b41f8..e602d2cd37 100644 --- a/Documentation/NuttxPortingGuide.html +++ b/Documentation/NuttxPortingGuide.html @@ -52,7 +52,7 @@ 2.6 nuttx/fs/
This directory holds a collection of standard libc-like functions with custom interfaces into NuttX.
- Normally the logic in this file builds to a single library (liblib.a
).
+ Normally the logic in this file builds to a single library (libc.a
).
However, if NuttX is built as a separately compiled kernel (with CONFIG_NUTTX_KERNEL=y
), then the contents of this directory are built as two libraries:
- One for use by user programs (libulib.a
) and one for use only within the <kernel> space (libklib.a
).
+ One for use by user programs (libuc.a
) and one for use only within the <kernel> space (libkc.a
).
These user/kernel space libraries (along with the sycalls of nuttx/syscall
) are needed to support the two differing protection domains.
@@ -1177,7 +1177,7 @@ include/
Directory structure:
-lib/ +libc/ |-- libgen/ | `-- (Implementation of functions from libgen.h) |-- math/ diff --git a/Documentation/README.html b/Documentation/README.html index 61d5c43af1..0a4cc93b0c 100644 --- a/Documentation/README.html +++ b/Documentation/README.html @@ -236,8 +236,8 @@ | | `- README.txt | |- graphics/ | | `- README.txt - | |- lib/ - | | `- README.txt + | |- libc/ + | | `- README.txt | |- libxx/ | | `- README.txt | |- mm/