summaryrefslogtreecommitdiff
path: root/nuttx/libc/unistd
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-08 16:51:22 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-08 16:51:22 +0000
commit3af495539591a849500e79917822ef955d62663d (patch)
tree4d8bfcb76706a7c789f59536b0dbe8c8c8ced7a0 /nuttx/libc/unistd
parent4c8b88b97559ddc6714fc17e9a281a13a65f88c0 (diff)
downloadpx4-nuttx-3af495539591a849500e79917822ef955d62663d.tar.gz
px4-nuttx-3af495539591a849500e79917822ef955d62663d.tar.bz2
px4-nuttx-3af495539591a849500e79917822ef955d62663d.zip
Documentation update
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5493 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/libc/unistd')
-rw-r--r--nuttx/libc/unistd/lib_execl.c8
-rw-r--r--nuttx/libc/unistd/lib_execv.c6
2 files changed, 7 insertions, 7 deletions
diff --git a/nuttx/libc/unistd/lib_execl.c b/nuttx/libc/unistd/lib_execl.c
index ac3147343..fa50c1429 100644
--- a/nuttx/libc/unistd/lib_execl.c
+++ b/nuttx/libc/unistd/lib_execl.c
@@ -83,7 +83,7 @@
* step process: (1) first call vfork() to create a new thread, then (2)
* call 'exec[l|v]()' to replace the new thread with a program from the
* file system. Since the new thread will be terminated by the
- * 'exec[l|v]()' call, it really served no purpose other than to suport
+ * 'exec[l|v]()' call, it really served no purpose other than to support
* Unix compatility.
*
* The non-standard binfmt function 'exec()' needs to have (1) a symbol
@@ -91,9 +91,9 @@
* (2) the number of symbols in that table. This information is currently
* provided to 'exec()' from 'exec[l|v]()' via NuttX configuration settings:
*
- * CONFIG_LIBC_EXECFUNCS : Enable exec[l|v] Support
+ * CONFIG_LIBC_EXECFUNCS : Enable exec[l|v] support
* CONFIG_EXECFUNCS_SYMTAB : Symbol table used by exec[l|v]
- * CONFIG_EXECFUNCS_NSYMBOLS : Number of Symbols in the Table
+ * CONFIG_EXECFUNCS_NSYMBOLS : Number of symbols in the table
*
* As a result of the above, the current implementations of 'execl()' and
* 'execv()' suffer from some incompatibilities that may or may not be
@@ -108,7 +108,7 @@
* is defined in the configuration, then this may be a relative path
* from the current working directory. Otherwise, path must be the
* absolute path to the program.
- * arg0,... - A list of the string arguments to be recevied by the
+ * ... - A list of the string arguments to be recevied by the
* program. Zero indicates the end of the list.
*
* Returned Value:
diff --git a/nuttx/libc/unistd/lib_execv.c b/nuttx/libc/unistd/lib_execv.c
index cad8ee307..b0f4136f1 100644
--- a/nuttx/libc/unistd/lib_execv.c
+++ b/nuttx/libc/unistd/lib_execv.c
@@ -104,7 +104,7 @@ extern struct symtab_s CONFIG_EXECFUNCS_SYMTAB;
* step process: (1) first call vfork() to create a new thread, then (2)
* call 'exec[l|v]()' to replace the new thread with a program from the
* file system. Since the new thread will be terminated by the
- * 'exec[l|v]()' call, it really served no purpose other than to suport
+ * 'exec[l|v]()' call, it really served no purpose other than to support
* Unix compatility.
*
* The non-standard binfmt function 'exec()' needs to have (1) a symbol
@@ -112,9 +112,9 @@ extern struct symtab_s CONFIG_EXECFUNCS_SYMTAB;
* (2) the number of symbols in that table. This information is currently
* provided to 'exec()' from 'exec[l|v]()' via NuttX configuration settings:
*
- * CONFIG_LIBC_EXECFUNCS : Enable exec[l|v] Support
+ * CONFIG_LIBC_EXECFUNCS : Enable exec[l|v] support
* CONFIG_EXECFUNCS_SYMTAB : Symbol table used by exec[l|v]
- * CONFIG_EXECFUNCS_NSYMBOLS : Number of Symbols in the Table
+ * CONFIG_EXECFUNCS_NSYMBOLS : Number of symbols in the table
*
* As a result of the above, the current implementations of 'execl()' and
* 'execv()' suffer from some incompatibilities that may or may not be