From 84adefa331c4159d432d22840663c38f155cd4c1 Mon Sep 17 00:00:00 2001 From: Erlang/OTP Date: Fri, 20 Nov 2009 14:54:40 +0000 Subject: The R13B03 release. --- lib/debugger/doc/src/debugger.xml | 79 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 lib/debugger/doc/src/debugger.xml (limited to 'lib/debugger/doc/src/debugger.xml') diff --git a/lib/debugger/doc/src/debugger.xml b/lib/debugger/doc/src/debugger.xml new file mode 100644 index 0000000000..479c4271b0 --- /dev/null +++ b/lib/debugger/doc/src/debugger.xml @@ -0,0 +1,79 @@ + + + + +
+ + 20022009 + Ericsson AB. All Rights Reserved. + + + The contents of this file are subject to the Erlang Public License, + Version 1.1, (the "License"); you may not use this file except in + compliance with the License. You should have received a copy of the + Erlang Public License along with this software. If not, it can be + retrieved online at http://www.erlang.org/. + + Software distributed under the License is distributed on an "AS IS" + basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See + the License for the specific language governing rights and limitations + under the License. + + + + debugger + + + + +
+ debugger + Erlang Debugger + +

Erlang Debugger for debugging and testing of Erlang programs.

+
+ + + + start() + start(File) + start(Mode) + start(Mode, File) + Start Debugger. + + Mode = local | global + File = string() + + +

Starts Debugger.

+ +

If given a file name as argument, Debugger will try to load + its settings from this file. Refer to Debugger User's Guide + for more information about settings.

+ +

If given local as argument, Debugger will interpret + code only at the current node. If given global as + argument, Debugger will interpret code at all known nodes, + this is the default.

+
+
+ + + quick(Module, Name, Args) + Debug a process. + + Module = Name = atom() + Args = [term()] + + +

This function can be used to debug a single process. + The module Module is interpreted and + apply(Module,Name,Args) is called. This will open an + Attach Process window, refer to Debugger User's Guide for + more information.

+
+
+
+
+ + -- cgit v1.2.3