1debugger(3) Erlang Module Definition debugger(3)
2
3
4
6 debugger - Erlang Debugger.
7
9 Erlang Debugger for debugging and testing of Erlang programs.
10
12 start()
13 start(File)
14 start(Mode)
15 start(Mode, File)
16
17 Types:
18
19 Mode = local | global
20 File = string()
21
22 Starts Debugger.
23
24 If a filename is specified as argument, Debugger tries to load
25 its settings from this file. For details about settings, see the
26 User's Guide.
27
28 If local is specified as argument, Debugger interprets code only
29 at the current node. If global is specified as argument, Debugā
30 ger interprets code at all known nodes, this is the default.
31
32 quick(Module, Name, Args)
33
34 Types:
35
36 Module = Name = atom()
37 Args = [term()]
38
39 Debugs a single process. The module Module is interpreted and
40 apply(Module,Name,Args) is called. This opens an Attach Process
41 window. For details, see the User's Guide.
42
43
44
45Ericsson AB debugger 5.2 debugger(3)