diff options
author | Ricardo Catalinas Jiménez <[email protected]> | 2012-02-28 18:09:27 +0100 |
---|---|---|
committer | Ricardo Catalinas Jiménez <[email protected]> | 2012-02-28 18:12:50 +0100 |
commit | 33cc284345798e343d52656fb4b158c06938aea3 (patch) | |
tree | 57f218d579cbf58b340fa9041c832196d92d0dbb /lib/observer/doc/src | |
parent | 4c8b2b9b58b06f1a72cddceb7c915129eb89152e (diff) | |
download | otp-33cc284345798e343d52656fb4b158c06938aea3.tar.gz otp-33cc284345798e343d52656fb4b158c06938aea3.tar.bz2 otp-33cc284345798e343d52656fb4b158c06938aea3.zip |
Add start/0,1 and help/0 to etop's doc
Diffstat (limited to 'lib/observer/doc/src')
-rw-r--r-- | lib/observer/doc/src/etop.xml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/lib/observer/doc/src/etop.xml b/lib/observer/doc/src/etop.xml index 78047caab3..928724846a 100644 --- a/lib/observer/doc/src/etop.xml +++ b/lib/observer/doc/src/etop.xml @@ -114,6 +114,36 @@ Default: <c>on</c></item> </description> <funcs> <func> + <name>start() -> ok</name> + <fsummary>Start etop</fsummary> + <desc> + <p>This function starts <c>etop</c>.</p> + </desc> + </func> + <func> + <name>start(Options) -> ok</name> + <fsummary>Start etop</fsummary> + <type> + <v>Options = [Option]</v> + <v>Option = {Key, Value}</v> + <v>Key = atom()</v> + <v>Value = term()</v> + </type> + <desc> + <p>This function starts <c>etop</c>. Use + <seealso marker="#help/0">help/0</seealso> to see a + description of the possible options.</p> + </desc> + </func> + <func> + <name>help() -> ok</name> + <fsummary>Print etop's help</fsummary> + <desc> + <p>This function prints the help of <c>etop</c> and + its options.</p> + </desc> + </func> + <func> <name>config(Key,Value) -> Result</name> <fsummary>Change tool's configuration</fsummary> <type> |