2008-02-21 Joel Sherrill <joel.sherrill@oarcorp.com>

* shell/file.t, shell/general.t, shell/memory.t, shell/network.t,
	shell/rtems.t: More descriptions and examples added.
This commit is contained in:
Joel Sherrill
2008-02-21 23:56:30 +00:00
parent ea0804303b
commit dc1c4308d6
6 changed files with 215 additions and 155 deletions

View File

@@ -1,3 +1,8 @@
2008-02-21 Joel Sherrill <joel.sherrill@oarcorp.com>
* shell/file.t, shell/general.t, shell/memory.t, shell/network.t,
shell/rtems.t: More descriptions and examples added.
2008-02-21 Joel Sherrill <joel.sherrill@oarcorp.com> 2008-02-21 Joel Sherrill <joel.sherrill@oarcorp.com>
* shell/file.t, shell/general.t, shell/memory.t, shell/network.t, * shell/file.t, shell/general.t, shell/memory.t, shell/network.t,

View File

@@ -52,7 +52,8 @@ umask [new_umask]
@subheading DESCRIPTION: @subheading DESCRIPTION:
This command XXX This command sets the user file creation mask to @code{new_umask}. The
argument @code{new_umask} may be octal, hexadecimal, or decimal.
@subheading EXIT STATUS: @subheading EXIT STATUS:
@@ -60,14 +61,19 @@ This command returns 0 on success and non-zero if an error is encountered.
@subheading NOTES: @subheading NOTES:
NONE This command does not currently support symbolic mode masks.
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use umask: The following is an example of how to use @code{umask}:
@example @example
EXAMPLE_TBD SHLL [/] $ umask
022
SHLL [/] $ umask 0666
0666
SHLL [/] $ umask
0666
@end example @end example
@subheading CONFIGURATION: @subheading CONFIGURATION:
@@ -88,7 +94,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_umask @findex rtems_shell_rtems_main_umask
The @code{COMMAND} is implemented by a C language function The @code{umask} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -98,7 +104,7 @@ int rtems_shell_rtems_main_umask(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{umask} has the
following prototype: following prototype:
@example @example
@@ -226,7 +232,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use cp: The following is an example of how to use @code{cp}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -250,7 +256,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_cp @findex rtems_shell_rtems_main_cp
The @code{COMMAND} is implemented by a C language function The @code{cp} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -260,7 +266,7 @@ int rtems_shell_rtems_main_cp(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{cp} has the
following prototype: following prototype:
@example @example
@@ -288,7 +294,8 @@ pwd
@subheading DESCRIPTION: @subheading DESCRIPTION:
This command XXX This command prints the fully qualified filename of the current
working directory.
@subheading EXIT STATUS: @subheading EXIT STATUS:
@@ -300,10 +307,14 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use pwd: The following is an example of how to use @code{pwd}:
@example @example
EXAMPLE_TBD SHLL [/] $ pwd
/
SHLL [/] $ cd dev
SHLL [/dev] $ pwd
/dev
@end example @end example
@subheading CONFIGURATION: @subheading CONFIGURATION:
@@ -324,7 +335,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_pwd @findex rtems_shell_rtems_main_pwd
The @code{COMMAND} is implemented by a C language function The @code{pwd} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -334,7 +345,7 @@ int rtems_shell_rtems_main_pwd(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{pwd} has the
following prototype: following prototype:
@example @example
@@ -357,7 +368,9 @@ ls [dir]
@subheading DESCRIPTION: @subheading DESCRIPTION:
This command XXX This command displays the contents of the specified directory. If
no arguments are given, then it displays the contents of the current
working directory.
@subheading EXIT STATUS: @subheading EXIT STATUS:
@@ -369,10 +382,22 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use ls: The following is an example of how to use @code{ls}:
@example @example
EXAMPLE_TBD SHLL [/] $ ls
drwxr-xr-x 1 root root 536 Jan 01 00:00 dev/
drwxr-xr-x 1 root root 1072 Jan 01 00:00 etc/
2 files 1608 bytes occupied
SHLL [/] $ ls etc
-rw-r--r-- 1 root root 102 Jan 01 00:00 passwd
-rw-r--r-- 1 root root 42 Jan 01 00:00 group
-rw-r--r-- 1 root root 30 Jan 01 00:00 issue
-rw-r--r-- 1 root root 28 Jan 01 00:00 issue.net
4 files 202 bytes occupied
SHLL [/] $ ls dev etc
-rwxr-xr-x 1 rtems root 0 Jan 01 00:00 console
-rwxr-xr-x 1 root root 0 Jan 01 00:00 console_b
@end example @end example
@subheading CONFIGURATION: @subheading CONFIGURATION:
@@ -393,7 +418,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_ls @findex rtems_shell_rtems_main_ls
The @code{COMMAND} is implemented by a C language function The @code{ls} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -403,7 +428,7 @@ int rtems_shell_rtems_main_ls(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{ls} has the
following prototype: following prototype:
@example @example
@@ -426,7 +451,9 @@ chdir [dir]
@subheading DESCRIPTION: @subheading DESCRIPTION:
This command XXX This command is used to change the current working directory to
the specified directory. If no arguments are given, the current
working directory will be changed to @code{/}.
@subheading EXIT STATUS: @subheading EXIT STATUS:
@@ -438,10 +465,14 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use chdir: The following is an example of how to use @code{chdir}:
@example @example
EXAMPLE_TBD SHLL [/] $ pwd
/
SHLL [/] $ chdir etc
SHLL [/etc] $ pwd
/etc
@end example @end example
@subheading CONFIGURATION: @subheading CONFIGURATION:
@@ -462,7 +493,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_chdir @findex rtems_shell_rtems_main_chdir
The @code{COMMAND} is implemented by a C language function The @code{chdir} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -472,7 +503,7 @@ int rtems_shell_rtems_main_chdir(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{chdir} has the
following prototype: following prototype:
@example @example
@@ -490,12 +521,15 @@ extern rtems_shell_cmd_t rtems_shell_CHDIR_Command;
@subheading SYNOPSYS: @subheading SYNOPSYS:
@example @example
mkdir dir mkdir dir [dir1 .. dirN]
@end example @end example
@subheading DESCRIPTION: @subheading DESCRIPTION:
This command XXX This command creates the set of directories in the order they
are specified on the command line. If an error is encountered
making one of the directories, the command will continue to
attempt to create the remaining directories on the command line.
@subheading EXIT STATUS: @subheading EXIT STATUS:
@@ -503,14 +537,28 @@ This command returns 0 on success and non-zero if an error is encountered.
@subheading NOTES: @subheading NOTES:
NONE If this command is invoked with no arguments, nothing occurs.
The user must have sufficient permissions to create the directory.
For the @code{fileio} test provided with RTEMS, this means the user
must login as @code{root} not @code{rtems}.
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use mkdir: The following is an example of how to use @code{mkdir}:
@example @example
EXAMPLE_TBD SHLL [/] # ls
drwxr-xr-x 1 root root 536 Jan 01 00:00 dev/
drwxr-xr-x 1 root root 1072 Jan 01 00:00 etc/
2 files 1608 bytes occupied
SHLL [/] # mkdir joel
SHLL [/] # ls joel
0 files 0 bytes occupied
SHLL [/] # cp etc/passwd joel
SHLL [/] # ls joel
-rw-r--r-- 1 root root 102 Jan 01 00:02 passwd
1 files 102 bytes occupied
@end example @end example
@subheading CONFIGURATION: @subheading CONFIGURATION:
@@ -531,7 +579,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_mkdir @findex rtems_shell_rtems_main_mkdir
The @code{COMMAND} is implemented by a C language function The @code{mkdir} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -541,7 +589,7 @@ int rtems_shell_rtems_main_mkdir(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{mkdir} has the
following prototype: following prototype:
@example @example
@@ -576,7 +624,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use rmdir: The following is an example of how to use @code{rmdir}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -600,7 +648,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_rmdir @findex rtems_shell_rtems_main_rmdir
The @code{COMMAND} is implemented by a C language function The @code{rmdir} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -610,7 +658,7 @@ int rtems_shell_rtems_main_rmdir(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{rmdir} has the
following prototype: following prototype:
@example @example
@@ -645,7 +693,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use chroot: The following is an example of how to use @code{chroot}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -669,7 +717,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_chroot @findex rtems_shell_rtems_main_chroot
The @code{COMMAND} is implemented by a C language function The @code{chroot} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -679,7 +727,7 @@ int rtems_shell_rtems_main_chroot(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{chroot} has the
following prototype: following prototype:
@example @example
@@ -714,7 +762,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use chmod: The following is an example of how to use @code{chmod}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -738,7 +786,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_chmod @findex rtems_shell_rtems_main_chmod
The @code{COMMAND} is implemented by a C language function The @code{chmod} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -748,7 +796,7 @@ int rtems_shell_rtems_main_chmod(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{chmod} has the
following prototype: following prototype:
@example @example
@@ -783,7 +831,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use cat: The following is an example of how to use @code{cat}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -807,7 +855,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_cat @findex rtems_shell_rtems_main_cat
The @code{COMMAND} is implemented by a C language function The @code{cat} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -817,7 +865,7 @@ int rtems_shell_rtems_main_cat(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{cat} has the
following prototype: following prototype:
@example @example
@@ -852,7 +900,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use rm: The following is an example of how to use @code{rm}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -876,7 +924,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_rm @findex rtems_shell_rtems_main_rm
The @code{COMMAND} is implemented by a C language function The @code{rm} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -886,7 +934,7 @@ int rtems_shell_rtems_main_rm(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{rm} has the
following prototype: following prototype:
@example @example
@@ -1004,7 +1052,7 @@ An example configuration is:
@findex rtems_shell_rtems_main_mount @findex rtems_shell_rtems_main_mount
The @code{COMMAND} is implemented by a C language function The @code{mount} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -1014,7 +1062,7 @@ int rtems_shell_rtems_main_mount(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{mount} has the
following prototype: following prototype:
@example @example
@@ -1049,7 +1097,7 @@ TBD
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use mount: The following is an example of how to use @code{mount}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -1073,7 +1121,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_unmount @findex rtems_shell_rtems_main_unmount
The @code{COMMAND} is implemented by a C language function The @code{unmount} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -1083,7 +1131,7 @@ int rtems_shell_rtems_main_unmount(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{unmount} has the
following prototype: following prototype:
@example @example
@@ -1118,7 +1166,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use blksync: The following is an example of how to use @code{blksync}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -1142,7 +1190,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_blksync @findex rtems_shell_rtems_main_blksync
The @code{COMMAND} is implemented by a C language function The @code{blksync} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -1152,7 +1200,7 @@ int rtems_shell_rtems_main_blksync(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{blksync} has the
following prototype: following prototype:
@example @example
@@ -1187,7 +1235,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use dir: The following is an example of how to use @code{dir}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -1211,7 +1259,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_dir @findex rtems_shell_rtems_main_dir
The @code{COMMAND} is implemented by a C language function The @code{dir} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -1221,7 +1269,7 @@ int rtems_shell_rtems_main_dir(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{dir} has the
following prototype: following prototype:
@example @example
@@ -1256,7 +1304,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use cd: The following is an example of how to use @code{cd}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -1280,7 +1328,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_cd @findex rtems_shell_rtems_main_cd
The @code{COMMAND} is implemented by a C language function The @code{cd} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -1290,7 +1338,7 @@ int rtems_shell_rtems_main_cd(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{cd} has the
following prototype: following prototype:
@example @example

View File

@@ -42,7 +42,8 @@ alias oldCommand newCommand
@subheading DESCRIPTION: @subheading DESCRIPTION:
This command XXX This command adds an alternate name for an existing command to
the command set.
@subheading EXIT STATUS: @subheading EXIT STATUS:
@@ -54,10 +55,16 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use alias: The following is an example of how to use @code{alias}:
@example @example
EXAMPLE_TBD SHLL [/] $ me
shell:me command not found
SHLL [/] $ alias whoami me
SHLL [/] $ me
rtems
SHLL [/] $ whoami
rtems
@end example @end example
@subheading CONFIGURATION: @subheading CONFIGURATION:
@@ -78,7 +85,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_alias @findex rtems_shell_rtems_main_alias
The @code{COMMAND} is implemented by a C language function The @code{alias} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -88,7 +95,7 @@ int rtems_shell_rtems_main_alias(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{alias} has the
following prototype: following prototype:
@example @example
@@ -123,7 +130,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use date: The following is an example of how to use @code{date}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -147,7 +154,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_date @findex rtems_shell_rtems_main_date
The @code{COMMAND} is implemented by a C language function The @code{date} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -157,7 +164,7 @@ int rtems_shell_rtems_main_date(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{date} has the
following prototype: following prototype:
@example @example
@@ -192,7 +199,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use id: The following is an example of how to use @code{id}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -216,7 +223,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_id @findex rtems_shell_rtems_main_id
The @code{COMMAND} is implemented by a C language function The @code{id} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -226,7 +233,7 @@ int rtems_shell_rtems_main_id(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{id} has the
following prototype: following prototype:
@example @example
@@ -261,7 +268,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use tty: The following is an example of how to use @code{tty}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -285,7 +292,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_tty @findex rtems_shell_rtems_main_tty
The @code{COMMAND} is implemented by a C language function The @code{tty} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -295,7 +302,7 @@ int rtems_shell_rtems_main_tty(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{tty} has the
following prototype: following prototype:
@example @example
@@ -330,7 +337,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use whoami: The following is an example of how to use @code{whoami}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -354,7 +361,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_whoami @findex rtems_shell_rtems_main_whoami
The @code{COMMAND} is implemented by a C language function The @code{whoami} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -364,7 +371,7 @@ int rtems_shell_rtems_main_whoami(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{whoami} has the
following prototype: following prototype:
@example @example
@@ -399,7 +406,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use logoff: The following is an example of how to use @code{logoff}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -423,7 +430,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_logoff @findex rtems_shell_rtems_main_logoff
The @code{COMMAND} is implemented by a C language function The @code{logoff} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -433,7 +440,7 @@ int rtems_shell_rtems_main_logoff(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{logoff} has the
following prototype: following prototype:
@example @example
@@ -468,7 +475,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use exit: The following is an example of how to use @code{exit}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -492,7 +499,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_exit @findex rtems_shell_rtems_main_exit
The @code{COMMAND} is implemented by a C language function The @code{exit} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -502,7 +509,7 @@ int rtems_shell_rtems_main_exit(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{exit} has the
following prototype: following prototype:
@example @example

View File

@@ -53,7 +53,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use mdump: The following is an example of how to use @code{mdump}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -77,7 +77,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_mdump @findex rtems_shell_rtems_main_mdump
The @code{COMMAND} is implemented by a C language function The @code{mdump} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -87,7 +87,7 @@ int rtems_shell_rtems_main_mdump(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{mdump} has the
following prototype: following prototype:
@example @example
@@ -122,7 +122,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use wdump: The following is an example of how to use @code{wdump}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -146,7 +146,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_wdump @findex rtems_shell_rtems_main_wdump
The @code{COMMAND} is implemented by a C language function The @code{wdump} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -156,7 +156,7 @@ int rtems_shell_rtems_main_wdump(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{wdump} has the
following prototype: following prototype:
@example @example
@@ -191,7 +191,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use medit: The following is an example of how to use @code{medit}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -215,7 +215,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_medit @findex rtems_shell_rtems_main_medit
The @code{COMMAND} is implemented by a C language function The @code{medit} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -225,7 +225,7 @@ int rtems_shell_rtems_main_medit(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{medit} has the
following prototype: following prototype:
@example @example
@@ -260,7 +260,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use mfill: The following is an example of how to use @code{mfill}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -284,7 +284,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_mfill @findex rtems_shell_rtems_main_mfill
The @code{COMMAND} is implemented by a C language function The @code{mfill} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -294,7 +294,7 @@ int rtems_shell_rtems_main_mfill(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{mfill} has the
following prototype: following prototype:
@example @example
@@ -329,7 +329,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use mmove: The following is an example of how to use @code{mmove}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -353,7 +353,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_mmove @findex rtems_shell_rtems_main_mmove
The @code{COMMAND} is implemented by a C language function The @code{mmove} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -363,7 +363,7 @@ int rtems_shell_rtems_main_mmove(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{mmove} has the
following prototype: following prototype:
@example @example
@@ -398,7 +398,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use malloc: The following is an example of how to use @code{malloc}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -422,7 +422,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_malloc @findex rtems_shell_rtems_main_malloc
The @code{COMMAND} is implemented by a C language function The @code{malloc} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -432,7 +432,7 @@ int rtems_shell_rtems_main_malloc(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{malloc} has the
following prototype: following prototype:
@example @example

View File

@@ -50,7 +50,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use netstats: The following is an example of how to use @code{netstats}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -74,7 +74,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_netstats @findex rtems_shell_rtems_main_netstats
The @code{COMMAND} is implemented by a C language function The @code{netstats} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -84,7 +84,7 @@ int rtems_shell_rtems_main_netstats(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{netstats} has the
following prototype: following prototype:
@example @example
@@ -119,7 +119,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use ifconfig: The following is an example of how to use @code{ifconfig}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -143,7 +143,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_ifconfig @findex rtems_shell_rtems_main_ifconfig
The @code{COMMAND} is implemented by a C language function The @code{ifconfig} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -153,7 +153,7 @@ int rtems_shell_rtems_main_ifconfig(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{ifconfig} has the
following prototype: following prototype:
@example @example
@@ -188,7 +188,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use route: The following is an example of how to use @code{route}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -212,7 +212,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_route @findex rtems_shell_rtems_main_route
The @code{COMMAND} is implemented by a C language function The @code{route} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -222,7 +222,7 @@ int rtems_shell_rtems_main_route(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{route} has the
following prototype: following prototype:
@example @example

View File

@@ -62,7 +62,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use cpuuse: The following is an example of how to use @code{cpuuse}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -86,7 +86,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_cpuuse @findex rtems_shell_rtems_main_cpuuse
The @code{COMMAND} is implemented by a C language function The @code{cpuuse} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -96,7 +96,7 @@ int rtems_shell_rtems_main_cpuuse(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{cpuuse} has the
following prototype: following prototype:
@example @example
@@ -131,7 +131,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use stackuse: The following is an example of how to use @code{stackuse}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -155,7 +155,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_stackuse @findex rtems_shell_rtems_main_stackuse
The @code{COMMAND} is implemented by a C language function The @code{stackuse} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -165,7 +165,7 @@ int rtems_shell_rtems_main_stackuse(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{stackuse} has the
following prototype: following prototype:
@example @example
@@ -200,7 +200,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use perioduse: The following is an example of how to use @code{perioduse}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -224,7 +224,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_perioduse @findex rtems_shell_rtems_main_perioduse
The @code{COMMAND} is implemented by a C language function The @code{perioduse} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -234,7 +234,7 @@ int rtems_shell_rtems_main_perioduse(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{perioduse} has the
following prototype: following prototype:
@example @example
@@ -269,7 +269,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use wkspace: The following is an example of how to use @code{wkspace}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -293,7 +293,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_wkspace @findex rtems_shell_rtems_main_wkspace
The @code{COMMAND} is implemented by a C language function The @code{wkspace} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -303,7 +303,7 @@ int rtems_shell_rtems_main_wkspace(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{wkspace} has the
following prototype: following prototype:
@example @example
@@ -338,7 +338,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use config: The following is an example of how to use @code{config}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -362,7 +362,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_config @findex rtems_shell_rtems_main_config
The @code{COMMAND} is implemented by a C language function The @code{config} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -372,7 +372,7 @@ int rtems_shell_rtems_main_config(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{config} has the
following prototype: following prototype:
@example @example
@@ -407,7 +407,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use itask: The following is an example of how to use @code{itask}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -431,7 +431,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_itask @findex rtems_shell_rtems_main_itask
The @code{COMMAND} is implemented by a C language function The @code{itask} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -441,7 +441,7 @@ int rtems_shell_rtems_main_itask(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{itask} has the
following prototype: following prototype:
@example @example
@@ -476,7 +476,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use extension: The following is an example of how to use @code{extension}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -500,7 +500,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_extension @findex rtems_shell_rtems_main_extension
The @code{COMMAND} is implemented by a C language function The @code{extension} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -510,7 +510,7 @@ int rtems_shell_rtems_main_extension(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{extension} has the
following prototype: following prototype:
@example @example
@@ -545,7 +545,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use task: The following is an example of how to use @code{task}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -569,7 +569,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_task @findex rtems_shell_rtems_main_task
The @code{COMMAND} is implemented by a C language function The @code{task} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -579,7 +579,7 @@ int rtems_shell_rtems_main_task(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{task} has the
following prototype: following prototype:
@example @example
@@ -614,7 +614,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use queue: The following is an example of how to use @code{queue}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -638,7 +638,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_queue @findex rtems_shell_rtems_main_queue
The @code{COMMAND} is implemented by a C language function The @code{queue} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -648,7 +648,7 @@ int rtems_shell_rtems_main_queue(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{queue} has the
following prototype: following prototype:
@example @example
@@ -683,7 +683,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use sema: The following is an example of how to use @code{sema}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -707,7 +707,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_sema @findex rtems_shell_rtems_main_sema
The @code{COMMAND} is implemented by a C language function The @code{sema} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -717,7 +717,7 @@ int rtems_shell_rtems_main_sema(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{sema} has the
following prototype: following prototype:
@example @example
@@ -752,7 +752,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use region: The following is an example of how to use @code{region}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -776,7 +776,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_region @findex rtems_shell_rtems_main_region
The @code{COMMAND} is implemented by a C language function The @code{region} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -786,7 +786,7 @@ int rtems_shell_rtems_main_region(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{region} has the
following prototype: following prototype:
@example @example
@@ -821,7 +821,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use part: The following is an example of how to use @code{part}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -845,7 +845,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_part @findex rtems_shell_rtems_main_part
The @code{COMMAND} is implemented by a C language function The @code{part} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -855,7 +855,7 @@ int rtems_shell_rtems_main_part(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{part} has the
following prototype: following prototype:
@example @example
@@ -890,7 +890,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use object: The following is an example of how to use @code{object}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -914,7 +914,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_object @findex rtems_shell_rtems_main_object
The @code{COMMAND} is implemented by a C language function The @code{object} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -924,7 +924,7 @@ int rtems_shell_rtems_main_object(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{object} has the
following prototype: following prototype:
@example @example
@@ -959,7 +959,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use driver: The following is an example of how to use @code{driver}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -983,7 +983,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_driver @findex rtems_shell_rtems_main_driver
The @code{COMMAND} is implemented by a C language function The @code{driver} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -993,7 +993,7 @@ int rtems_shell_rtems_main_driver(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{driver} has the
following prototype: following prototype:
@example @example
@@ -1028,7 +1028,7 @@ NONE
@subheading EXAMPLES: @subheading EXAMPLES:
The following is an example of how to use dname: The following is an example of how to use @code{dname}:
@example @example
EXAMPLE_TBD EXAMPLE_TBD
@@ -1052,7 +1052,7 @@ shell commands have been configured.
@findex rtems_shell_rtems_main_dname @findex rtems_shell_rtems_main_dname
The @code{COMMAND} is implemented by a C language function The @code{dname} is implemented by a C language function
which has the following prototype: which has the following prototype:
@example @example
@@ -1062,7 +1062,7 @@ int rtems_shell_rtems_main_dname(
); );
@end example @end example
The configuration structure for the @code{COMMAND} has the The configuration structure for the @code{dname} has the
following prototype: following prototype:
@example @example