Version: $Rev: 359 $ $LastChangedDate: 2006-01-11 10:28:26 -0500 (Wed, 11 Jan 2006) $
Authors: Serge Aleynikov (serge@hq.idt.net).
print_trace/1 | |
t/3 | Call M:F function with Args arguments, and return a tuple {Result, Trace} containing call trace. |
t/4 | Call M:F function with Args arguments, and return a tuple {Result, Trace} containing call trace. |
tf/3 | Trace a function call and return trace result. |
tf/4 | Trace a function call and return trace result. |
tp/3 | Trace a function call and print trace result to the console. |
tp/4 | Trace a function call and print trace result to the console. |
t(M::atom(), F::atom(), Args::list()) -> {Result::term(), Trace::list()}
Call M:F function with Args arguments, and return a tuple {Result, Trace} containing call trace.
t(M::atom(), F::atom(), Args::list(), Flags::list()) -> {Result::term(), Trace::list()}
Call M:F function with Args arguments, and return a tuple {Result, Trace} containing call trace.
tf(M, F, Args) -> TraceList::term()
Trace a function call and return trace result.
tf(M, F, Args, Flags) -> TraceList::term()
Trace a function call and return trace result.
See //kernel/erlang:trace/3
for description of Flags.
tp(M, F, Args) -> Result::term()
Trace a function call and print trace result to the console.
tp(M, F, Args, Flags::FlagList) -> Result::term()
Trace a function call and print trace result to the console.
See //kernel/erlang:trace/3
for description of Flags.