diff options
author | Dan Gudmundsson <[email protected]> | 2013-11-11 12:50:58 +0100 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2013-11-11 12:55:59 +0100 |
commit | 8217d8dc329f53e182ae38e4659cdc8dbc8dd728 (patch) | |
tree | d9b67e92b83511687fdd1e87e0751f337c0ab5af /lib/observer/src/etop.erl | |
parent | f77b4655155009f546e2fc6265ee454d203dfba2 (diff) | |
download | otp-8217d8dc329f53e182ae38e4659cdc8dbc8dd728.tar.gz otp-8217d8dc329f53e182ae38e4659cdc8dbc8dd728.tar.bz2 otp-8217d8dc329f53e182ae38e4659cdc8dbc8dd728.zip |
Remove etop gui
Use observer for the gui part
Diffstat (limited to 'lib/observer/src/etop.erl')
-rw-r--r-- | lib/observer/src/etop.erl | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/observer/src/etop.erl b/lib/observer/src/etop.erl index 2610060eae..96a18cf450 100644 --- a/lib/observer/src/etop.erl +++ b/lib/observer/src/etop.erl @@ -44,9 +44,6 @@ help() -> " sort runtime | reductions | memory | msg_q~n" " What information to sort by~n" " Default: runtime (reductions if tracing=off)~n" - " output graphical | text~n" - " How to present results~n" - " Default: graphical~n" " tracing on | off etop uses the erlang trace facility, and thus~n" " no other tracing is possible on the node while~n" " etop is running, unless this option is set to~n" @@ -317,7 +314,7 @@ handle_args([_| R], C) -> handle_args([], C) -> C. -output(graphical) -> etop_gui; +output(graphical) -> exit({deprecated, "Use observer instead"}); output(text) -> etop_txt. |