From 50f64c60b87e8d03fedc3f9f4e655aff8ca9f16c Mon Sep 17 00:00:00 2001 From: Sverker Eriksson Date: Wed, 12 Dec 2018 19:32:24 +0100 Subject: Add empty 'since' attribute for old modules and functions --- lib/debugger/doc/src/debugger.xml | 12 ++++---- lib/debugger/doc/src/i.xml | 64 +++++++++++++++++++-------------------- lib/debugger/doc/src/int.xml | 64 +++++++++++++++++++-------------------- 3 files changed, 70 insertions(+), 70 deletions(-) (limited to 'lib/debugger/doc/src') diff --git a/lib/debugger/doc/src/debugger.xml b/lib/debugger/doc/src/debugger.xml index 1ecdbcd064..77285095e7 100644 --- a/lib/debugger/doc/src/debugger.xml +++ b/lib/debugger/doc/src/debugger.xml @@ -28,7 +28,7 @@ - debugger + debugger Erlang Debugger.

Erlang Debugger for debugging and testing of Erlang programs.

@@ -36,10 +36,10 @@ - start() - start(File) - start(Mode) - start(Mode, File) + start() + start(File) + start(Mode) + start(Mode, File) Start Debugger. Mode = local | global @@ -60,7 +60,7 @@ - quick(Module, Name, Args) + quick(Module, Name, Args) Debug a process. Module = Name = atom() diff --git a/lib/debugger/doc/src/i.xml b/lib/debugger/doc/src/i.xml index 628b91e9e4..06b0eb876a 100644 --- a/lib/debugger/doc/src/i.xml +++ b/lib/debugger/doc/src/i.xml @@ -28,7 +28,7 @@ - i + i Debugger/Interpreter Interface.

The i module provides short forms for some of @@ -51,7 +51,7 @@ - im() -> pid() + im() -> pid() Start a graphical monitor.

Starts a new graphical monitor. This is the Monitor window, @@ -63,10 +63,10 @@ - ii(AbsModules) -> ok - ii(AbsModule) -> {module, Module} | error - ini(AbsModules) -> ok - ini(AbsModule) -> {module, Module} | error + ii(AbsModules) -> ok + ii(AbsModule) -> {module, Module} | error + ini(AbsModules) -> ok + ini(AbsModule) -> {module, Module} | error Interpret a module. AbsModules = [AbsModule] @@ -84,8 +84,8 @@ - iq(AbsModule) -> ok - inq(AbsModule) -> ok + iq(AbsModule) -> ok + inq(AbsModule) -> ok Stop interpreting a module. AbsModule = Module | File @@ -100,7 +100,7 @@ - il() -> ok + il() -> ok Make a printout of all interpreted modules

Makes a printout of all interpreted modules. @@ -110,7 +110,7 @@ - ip() -> ok + ip() -> ok Print the current status of all interpreted processes. @@ -119,7 +119,7 @@ - ic() -> ok + ic() -> ok Clear information about processes executing interpreted code. @@ -129,8 +129,8 @@ - iaa(Flags) -> true - iaa(Flags, Function) -> true + iaa(Flags) -> true + iaa(Flags, Function) -> true Set when and how to attach to a process. Flags = [init | break | exit] @@ -148,7 +148,7 @@ - ist(Flag) -> true + ist(Flag) -> true Set how to save call frames. Flag = all | no_tail | false @@ -160,7 +160,7 @@ - ia(Pid) -> ok | no_proc + ia(Pid) -> ok | no_proc Attache to a process. Pid = pid() @@ -172,7 +172,7 @@ - ia(X,Y,Z) -> ok | no_proc + ia(X,Y,Z) -> ok | no_proc Attache to a process. X = Y = Z = int() @@ -184,7 +184,7 @@ - ia(Pid, Function) -> ok | no_proc + ia(Pid, Function) -> ok | no_proc Attache to a process. Pid = pid() @@ -199,7 +199,7 @@ - ia(X,Y,Z, Function) -> ok | no_proc + ia(X,Y,Z, Function) -> ok | no_proc Attache to a process. X = Y = Z = int() @@ -217,7 +217,7 @@ - ib(Module, Line) -> ok | {error, break_exists} + ib(Module, Line) -> ok | {error, break_exists} Create a breakpoint. Module = atom() @@ -229,7 +229,7 @@ - ib(Module, Name, Arity) -> ok | {error, function_not_found} + ib(Module, Name, Arity) -> ok | {error, function_not_found} Create breakpoints in the specified function. @@ -243,7 +243,7 @@ - ir() -> ok + ir() -> ok Delete all breakpoints.

Deletes all breakpoints.

@@ -251,7 +251,7 @@
- ir(Module) -> ok + ir(Module) -> ok Delete all breakpoints in a module. Module = atom() @@ -262,7 +262,7 @@ - ir(Module, Line) -> ok + ir(Module, Line) -> ok Delete a breakpoint. Module = atom() @@ -274,7 +274,7 @@ - ir(Module, Name, Arity) -> ok | {error, function_not_found} + ir(Module, Name, Arity) -> ok | {error, function_not_found} Delete breakpoints from the specified function. @@ -288,7 +288,7 @@ - ibd(Module, Line) -> ok + ibd(Module, Line) -> ok Make a breakpoint inactive. Module = atom() @@ -300,7 +300,7 @@ - ibe(Module, Line) -> ok + ibe(Module, Line) -> ok Make a breakpoint active. Module = atom() @@ -312,7 +312,7 @@ - iba(Module, Line, Action) -> ok + iba(Module, Line, Action) -> ok Set the trigger action of a breakpoint. Module = atom() @@ -326,7 +326,7 @@ - ibc(Module, Line, Function) -> ok + ibc(Module, Line, Function) -> ok Set the conditional test of a breakpoint. Module = atom() @@ -348,7 +348,7 @@ - ipb() -> ok + ipb() -> ok Print all existing breakpoints.

Prints all existing breakpoints.

@@ -356,7 +356,7 @@
- ipb(Module) -> ok + ipb(Module) -> ok Print all existing breakpoints in a module. Module = atom() @@ -367,7 +367,7 @@ - iv() -> atom() + iv() -> atom() Return the current version number of the interpreter. @@ -377,7 +377,7 @@ - help() -> ok + help() -> ok Print help text.

Prints help text.

diff --git a/lib/debugger/doc/src/int.xml b/lib/debugger/doc/src/int.xml index 31e9dfe923..a0078714e6 100644 --- a/lib/debugger/doc/src/int.xml +++ b/lib/debugger/doc/src/int.xml @@ -28,7 +28,7 @@ - int + int Interpreter Interface.

The Erlang interpreter provides mechanisms for breakpoints and @@ -94,10 +94,10 @@ - i(AbsModule) -> {module,Module} | error - i(AbsModules) -> ok - ni(AbsModule) -> {module,Module} | error - ni(AbsModules) -> ok + i(AbsModule) -> {module,Module} | error + i(AbsModules) -> ok + ni(AbsModule) -> {module,Module} | error + ni(AbsModules) -> ok Interpret a module. AbsModules = [AbsModule] @@ -144,8 +144,8 @@ - n(AbsModule) -> ok - nn(AbsModule) -> ok + n(AbsModule) -> ok + nn(AbsModule) -> ok Stop interpreting a module. AbsModule = Module | File | [Module | File] @@ -163,7 +163,7 @@ - interpreted() -> [Module] + interpreted() -> [Module] Get all interpreted modules. Module = atom() @@ -174,7 +174,7 @@ - file(Module) -> File | {error,not_loaded} + file(Module) -> File | {error,not_loaded} Get the filename for an interpreted module. Module = atom() @@ -187,7 +187,7 @@ - interpretable(AbsModule) -> true | {error,Reason} + interpretable(AbsModule) -> true | {error,Reason} Check if a module can be interpreted. AbsModule = Module | File @@ -255,9 +255,9 @@ - auto_attach() -> false | {Flags,Function} - auto_attach(false) - auto_attach(Flags, Function) + auto_attach() -> false | {Flags,Function} + auto_attach(false) + auto_attach(Flags, Function) Get and set when and how to attach to a process. Flags = [init | break | exit] @@ -290,8 +290,8 @@ spawn(Module, Name, [Pid | Args]) - stack_trace() -> Flag - stack_trace(Flag) + stack_trace() -> Flag + stack_trace(Flag) Get and set if and how to save call frames. Flag = all | no_tail | false @@ -322,7 +322,7 @@ spawn(Module, Name, [Pid | Args]) - break(Module, Line) -> ok | {error,break_exists} + break(Module, Line) -> ok | {error,break_exists} Create a breakpoint. Module = atom() @@ -334,7 +334,7 @@ spawn(Module, Name, [Pid | Args]) - delete_break(Module, Line) -> ok + delete_break(Module, Line) -> ok Delete a breakpoint. Module = atom() @@ -346,7 +346,7 @@ spawn(Module, Name, [Pid | Args]) - break_in(Module, Name, Arity) -> ok + break_in(Module, Name, Arity) -> ok | {error,function_not_found} Create breakpoints in the specified function. @@ -360,7 +360,7 @@ spawn(Module, Name, [Pid | Args]) - del_break_in(Module, Name, Arity) -> ok + del_break_in(Module, Name, Arity) -> ok | {error,function_not_found} Delete breakpoints from the specified function. @@ -374,8 +374,8 @@ spawn(Module, Name, [Pid | Args]) - no_break() -> ok - no_break(Module) -> ok + no_break() -> ok + no_break(Module) -> ok Delete all breakpoints.

Deletes all breakpoints, or all breakpoints in Module.

@@ -383,7 +383,7 @@ spawn(Module, Name, [Pid | Args])
- disable_break(Module, Line) -> ok + disable_break(Module, Line) -> ok Make a breakpoint inactive. Module = atom() @@ -395,7 +395,7 @@ spawn(Module, Name, [Pid | Args]) - enable_break(Module, Line) -> ok + enable_break(Module, Line) -> ok Make a breakpoint active. Module = atom() @@ -407,7 +407,7 @@ spawn(Module, Name, [Pid | Args]) - action_at_break(Module, Line, Action) -> ok + action_at_break(Module, Line, Action) -> ok Set the trigger action of a breakpoint. Module = atom() @@ -421,7 +421,7 @@ spawn(Module, Name, [Pid | Args]) - test_at_break(Module, Line, Function) -> ok + test_at_break(Module, Line, Function) -> ok Set the conditional test of a breakpoint. Module = atom() @@ -438,7 +438,7 @@ spawn(Module, Name, [Pid | Args]) - get_binding(Var, Bindings) -> {value,Value} | unbound + get_binding(Var, Bindings) -> {value,Value} | unbound Retrieve a variable binding. Var = atom() @@ -453,8 +453,8 @@ spawn(Module, Name, [Pid | Args]) - all_breaks() -> [Break] - all_breaks(Module) -> [Break] + all_breaks() -> [Break] + all_breaks(Module) -> [Break] Get all breakpoints. Break = {Point,Options} @@ -474,7 +474,7 @@ spawn(Module, Name, [Pid | Args]) - snapshot() -> [Snapshot] + snapshot() -> [Snapshot] Get information about all processes executing interpreted code. @@ -519,7 +519,7 @@ spawn(Module, Name, [Pid | Args]) - clear() -> ok + clear() -> ok Clear information about processes executing interpreted code. @@ -529,8 +529,8 @@ spawn(Module, Name, [Pid | Args]) - continue(Pid) -> ok | {error,not_interpreted} - continue(X,Y,Z) -> ok | {error,not_interpreted} + continue(Pid) -> ok | {error,not_interpreted} + continue(X,Y,Z) -> ok | {error,not_interpreted} Resume process execution. Pid = pid() -- cgit v1.2.3