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/int.xml | 64 ++++++++++++++++++++++---------------------- 1 file changed, 32 insertions(+), 32 deletions(-) (limited to 'lib/debugger/doc/src/int.xml') 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