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/et/doc/src/et_collector.xml | 46 ++++++++++++++++++++--------------------- 1 file changed, 23 insertions(+), 23 deletions(-) (limited to 'lib/et/doc/src/et_collector.xml') diff --git a/lib/et/doc/src/et_collector.xml b/lib/et/doc/src/et_collector.xml index fd90ecfc41..f908612797 100644 --- a/lib/et/doc/src/et_collector.xml +++ b/lib/et/doc/src/et_collector.xml @@ -32,14 +32,14 @@ %VSN% et_collector.xml - et_collector + et_collector Collect trace events and provide a backing storage appropriate for iteration

Interface module for the Event Trace (ET) application

- start_link(Options) -> {ok, CollectorPid} | {error, Reason} + start_link(Options) -> {ok, CollectorPid} | {error, Reason} Start a collector process Options = [option()] @@ -105,7 +105,7 @@ - stop(CollectorPid) -> ok + stop(CollectorPid) -> ok Stop a collector process CollectorPid = pid() @@ -115,7 +115,7 @@ - save_event_file(CollectorPid, FileName, Options) -> ok | {error, Reason} + save_event_file(CollectorPid, FileName, Options) -> ok | {error, Reason} Save the events to a file CollectorPid = pid() @@ -139,7 +139,7 @@ - load_event_file(CollectorPid, FileName) -> {ok, BadBytes} | exit(Reason) + load_event_file(CollectorPid, FileName) -> {ok, BadBytes} | exit(Reason) Load the event table from a file CollectorPid = pid() @@ -152,9 +152,9 @@ - report(Handle, TraceOrEvent) -> {ok, Continuation} | exit(Reason) - report_event(Handle, DetailLevel, FromTo, Label, Contents) -> {ok, Continuation} | exit(Reason) - report_event(Handle, DetailLevel, From, To, Label, Contents) -> {ok, Continuation} | exit(Reason) + report(Handle, TraceOrEvent) -> {ok, Continuation} | exit(Reason) + report_event(Handle, DetailLevel, FromTo, Label, Contents) -> {ok, Continuation} | exit(Reason) + report_event(Handle, DetailLevel, From, To, Label, Contents) -> {ok, Continuation} | exit(Reason) Report an event to the collector Handle = Initial | Continuation @@ -181,7 +181,7 @@ - make_key(Type, Stuff) -> Key + make_key(Type, Stuff) -> Key Make a key out of an event record or an old key Type = record(table_handle) | trace_ts | event_ts @@ -193,7 +193,7 @@ - get_table_handle(CollectorPid) -> Handle + get_table_handle(CollectorPid) -> Handle Return a table handle CollectorPid = pid() @@ -204,7 +204,7 @@ - get_global_pid() -> CollectorPid | exit(Reason) + get_global_pid() -> CollectorPid | exit(Reason) Return a the identity of the globally registered collector if there is any CollectorPid = pid() @@ -216,7 +216,7 @@ - change_pattern(CollectorPid, RawPattern) -> {old_pattern, TracePattern} + change_pattern(CollectorPid, RawPattern) -> {old_pattern, TracePattern} Change active trace pattern globally on all trace nodes CollectorPid = pid() @@ -232,9 +232,9 @@ - dict_insert(CollectorPid, {filter, collector}, FilterFun) -> ok - dict_insert(CollectorPid, {subscriber, SubscriberPid}, Void) -> ok - dict_insert(CollectorPid, Key, Val) -> ok + dict_insert(CollectorPid, {filter, collector}, FilterFun) -> ok + dict_insert(CollectorPid, {subscriber, SubscriberPid}, Void) -> ok + dict_insert(CollectorPid, Key, Val) -> ok Insert a dictionary entry and send a {et, {dict_insert, Key, Val}} tuple to all registered subscribers. CollectorPid = pid() @@ -259,7 +259,7 @@ - dict_lookup(CollectorPid, Key) -> [Val] + dict_lookup(CollectorPid, Key) -> [Val] Lookup a dictionary entry and return zero or one value CollectorPid = pid() @@ -273,7 +273,7 @@ - dict_delete(CollectorPid, Key) -> ok + dict_delete(CollectorPid, Key) -> ok Delete a dictionary entry and send a {et, {dict_delete, Key}} tuple to all registered subscribers. CollectorPid = pid() @@ -290,7 +290,7 @@ - dict_match(CollectorPid, Pattern) -> [Match] + dict_match(CollectorPid, Pattern) -> [Match] Match some dictionary entries CollectorPid = pid() @@ -306,7 +306,7 @@ - multicast(_CollectorPid, Msg) -> ok + multicast(_CollectorPid, Msg) -> ok Sends a message to all registered subscribers CollectorPid = pid() @@ -318,7 +318,7 @@ - start_trace_client(CollectorPid, Type, Parameters) -> file_loaded | {trace_client_pid, pid()} | exit(Reason) + start_trace_client(CollectorPid, Type, Parameters) -> file_loaded | {trace_client_pid, pid()} | exit(Reason) Load raw Erlang trace from a file, port or process. Type = dbg_trace_client_type() @@ -330,14 +330,14 @@ - iterate(Handle, Prev, Limit) -> NewAcc + iterate(Handle, Prev, Limit) -> NewAcc Iterates over the currently stored events

Short for iterate(Handle, Prev, Limit, undefined, Prev) -> NewAcc

- iterate(Handle, Prev, Limit, Fun, Acc) -> NewAcc + iterate(Handle, Prev, Limit, Fun, Acc) -> NewAcc Iterate over the currently stored events Handle = collector_pid() | table_handle() @@ -361,7 +361,7 @@ - clear_table(Handle) -> ok + clear_table(Handle) -> ok Clear the event table Handle = collector_pid() | table_handle() -- cgit v1.2.3