Squashed commit of the following:

binfmt/, libs/libc/unistd, and others:  Rename CONFIG_EXECFUNCS_SYMTAB to CONFIG_EXECFUNCS_SYMTAB_ARRAY.  Rename CONFIG_EXECFUNCS_NSYMBOLS to CONFIG_EXECFUNCS_NSYMBOLS_VAR.  Unlike CONFIG_EXECFUNCS_NSYMBOLS, CONFIG_EXECFUNCS_NSYMBOLS_VAR holds the name of an 'int' variable that contains the number of symbols in the symbol table.

    configs/sama5d4-ek:  Partial update to knsh build instructions.
This commit is contained in:
Gregory Nutt
2018-07-15 11:20:37 -06:00
parent 07b13260ce
commit 4c67062457
10 changed files with 97 additions and 36 deletions
+5 -5
View File
@@ -13,7 +13,7 @@
<h1><big><font color="#3c34ec"><i>NuttX Operating System<p>User's Manual</i></font></big></h1>
<p><small>by</small></p>
<p>Gregory Nutt<p>
<p>Last Updated: October 20, 2017</p>
<p>Last Updated: July 15, 2018</p>
</td>
</tr>
</table>
@@ -953,12 +953,12 @@ int execv(FAR const char *path, FAR char *const argv[]);
Enable <code>execv()</code> and <code>execl()</code> support
</li>
<li>
<code>CONFIG_EXECFUNCS_SYMTAB</code>:
Symbol table used by <code>execv()</code> or <code>execl()</code>.
<code>CONFIG_EXECFUNCS_SYMTAB_ARRAY</code>:
Name of the ymbol table used by <code>execv()</code> or <code>execl()</code>.
</li>
<li>
<code>CONFIG_EXECFUNCS_NSYMBOLS</code>:
Number of symbols in the symbol table
<code>CONFIG_EXECFUNCS_NSYMBOLS_VAR</code>:
Name of the <code>int</code> variable holding the number of symbols in the symbol table
</li>
</ul>
<p>