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/kernel/doc/src/application.xml | 64 +++++++++++----------- lib/kernel/doc/src/auth.xml | 12 ++--- lib/kernel/doc/src/code.xml | 70 ++++++++++++------------ lib/kernel/doc/src/disk_log.xml | 74 ++++++++++++------------- lib/kernel/doc/src/erl_boot_server.xml | 12 ++--- lib/kernel/doc/src/erl_ddll.xml | 32 +++++------ lib/kernel/doc/src/error_handler.xml | 6 +-- lib/kernel/doc/src/error_logger.xml | 44 +++++++-------- lib/kernel/doc/src/file.xml | 98 +++++++++++++++++----------------- lib/kernel/doc/src/gen_sctp.xml | 36 ++++++------- lib/kernel/doc/src/gen_tcp.xml | 24 ++++----- lib/kernel/doc/src/gen_udp.xml | 16 +++--- lib/kernel/doc/src/global.xml | 42 +++++++-------- lib/kernel/doc/src/global_group.xml | 22 ++++---- lib/kernel/doc/src/heart.xml | 8 +-- lib/kernel/doc/src/inet.xml | 34 ++++++------ lib/kernel/doc/src/inet_res.xml | 38 ++++++------- lib/kernel/doc/src/net_adm.xml | 22 ++++---- lib/kernel/doc/src/net_kernel.xml | 24 ++++----- lib/kernel/doc/src/os.xml | 22 ++++---- lib/kernel/doc/src/pg2.xml | 22 ++++---- lib/kernel/doc/src/rpc.xml | 56 +++++++++---------- lib/kernel/doc/src/seq_trace.xml | 20 +++---- lib/kernel/doc/src/wrap_log_reader.xml | 12 ++--- 24 files changed, 405 insertions(+), 405 deletions(-) (limited to 'lib/kernel/doc') diff --git a/lib/kernel/doc/src/application.xml b/lib/kernel/doc/src/application.xml index ec5d081676..4e32c1a3a5 100644 --- a/lib/kernel/doc/src/application.xml +++ b/lib/kernel/doc/src/application.xml @@ -28,7 +28,7 @@ - application + application Generic OTP application functions

In OTP, application denotes a component implementing @@ -95,8 +95,8 @@ - - + + Get the configuration parameters for an application.

Returns the configuration parameters and their values for @@ -108,8 +108,8 @@ - - + + Get the application specification keys.

Returns the application specification keys and their values @@ -122,8 +122,8 @@ - - + + Get the name of an application containing a certain process or module.

Returns the name of the application to which the process @@ -136,8 +136,8 @@ - - + + Get the value of a configuration parameter.

Returns the value of configuration parameter Par @@ -162,8 +162,8 @@ - - + + Get the value of an application specification key.

Returns the value of the application specification key @@ -180,8 +180,8 @@ - - + + Load an application. @@ -226,7 +226,7 @@ Nodes = [cp1@cave, {cp2@cave, cp3@cave}] - + Get the currently loaded applications.

Returns a list with information about the applications, and included @@ -238,7 +238,7 @@ Nodes = [cp1@cave, {cp2@cave, cp3@cave}] - + Change the permission for an application to run at a node.

Changes the permission for Application to run at @@ -271,8 +271,8 @@ Nodes = [cp1@cave, {cp2@cave, cp3@cave}] - - + + Set the value of a configuration parameter.

Sets the value of configuration parameter Par for @@ -302,8 +302,8 @@ Nodes = [cp1@cave, {cp2@cave, cp3@cave}] - - + + Load and start an application.

Starts Application. If it is not loaded, @@ -353,7 +353,7 @@ Nodes = [cp1@cave, {cp2@cave, cp3@cave}] - + Get the start type of an ongoing application startup.

This function is intended to be called by a process belonging @@ -370,7 +370,7 @@ Nodes = [cp1@cave, {cp2@cave, cp3@cave}] - + Stop an application.

Stops Application. The application master calls @@ -399,7 +399,7 @@ Nodes = [cp1@cave, {cp2@cave, cp3@cave}] - + Take over a distributed application.

Takes over the distributed application @@ -424,7 +424,7 @@ Nodes = [cp1@cave, {cp2@cave, cp3@cave}] - + Unload an application.

Unloads the application specification for Application @@ -435,8 +435,8 @@ Nodes = [cp1@cave, {cp2@cave, cp3@cave}] - - + + Unset the value of a configuration parameter.

Removes the configuration parameter Par and its value @@ -459,8 +459,8 @@ Nodes = [cp1@cave, {cp2@cave, cp3@cave}] - - + + Get the currently running applications.

Returns a list with information about the applications that @@ -484,7 +484,7 @@ Nodes = [cp1@cave, {cp2@cave, cp3@cave}] - Module:start(StartType, StartArgs) -> {ok, Pid} | {ok, Pid, State} | {error, Reason} + Module:start(StartType, StartArgs) -> {ok, Pid} | {ok, Pid, State} | {error, Reason} Start an application. StartType = start_type() @@ -526,7 +526,7 @@ Nodes = [cp1@cave, {cp2@cave, cp3@cave}] - Module:start_phase(Phase, StartType, PhaseArgs) -> ok | {error, Reason} + Module:start_phase(Phase, StartType, PhaseArgs) -> ok | {error, Reason} Extended start of an application. Phase = atom() @@ -551,7 +551,7 @@ Nodes = [cp1@cave, {cp2@cave, cp3@cave}] - Module:prep_stop(State) -> NewState + Module:prep_stop(State) -> NewState Prepare an application for termination. State = NewState = term() @@ -569,7 +569,7 @@ Nodes = [cp1@cave, {cp2@cave, cp3@cave}] - Module:stop(State) + Module:stop(State) Clean up after termination of an application. State = term() @@ -585,7 +585,7 @@ Nodes = [cp1@cave, {cp2@cave, cp3@cave}] - Module:config_change(Changed, New, Removed) -> ok + Module:config_change(Changed, New, Removed) -> ok Update the configuration parameters for an application. Changed = [{Par,Val}] diff --git a/lib/kernel/doc/src/auth.xml b/lib/kernel/doc/src/auth.xml index 5901446960..a57da18de9 100644 --- a/lib/kernel/doc/src/auth.xml +++ b/lib/kernel/doc/src/auth.xml @@ -28,7 +28,7 @@ - auth + auth Erlang network authentication server.

This module is deprecated. For a description of the Magic @@ -42,7 +42,7 @@ - + Magic cookie for local node (deprecated).

Use @@ -51,7 +51,7 @@ - + Set the magic for the local node (deprecated). The cookie can also be specified as a list with a single atom element. @@ -63,7 +63,7 @@ - + Status of communication authorization (deprecated).

Returns yes if communication with Node is @@ -76,7 +76,7 @@ - node_cookie([Node, Cookie]) -> yes | no + node_cookie([Node, Cookie]) -> yes | no Set the magic cookie for a node and verify authorization (deprecated). Node = node() @@ -88,7 +88,7 @@ - + Set the magic cookie for a node and verify authorization (deprecated).

Sets the magic cookie of Node to diff --git a/lib/kernel/doc/src/code.xml b/lib/kernel/doc/src/code.xml index 8dae6d90f3..85178da930 100644 --- a/lib/kernel/doc/src/code.xml +++ b/lib/kernel/doc/src/code.xml @@ -28,7 +28,7 @@ - code + code Erlang code server.

This module contains the interface to the Erlang @@ -322,7 +322,7 @@ zip:create("mnesia-4.4.7.ez", - + Set the code server search path.

Sets the code path to the list of directories Path.

@@ -336,15 +336,15 @@ zip:create("mnesia-4.4.7.ez", - + Return the code server search path.

Returns the code path.

- - + + Add a directory to the end of the code path. @@ -357,7 +357,7 @@ zip:create("mnesia-4.4.7.ez", - + Add a directory to the beginning of the code path. @@ -370,8 +370,8 @@ zip:create("mnesia-4.4.7.ez", - - + + Add directories to the end of the code path.

Adds the directories in Dirs to the end of the code @@ -381,7 +381,7 @@ zip:create("mnesia-4.4.7.ez", - + Add directories to the beginning of the code path.

Traverses Dirs and adds @@ -397,7 +397,7 @@ zip:create("mnesia-4.4.7.ez", - + Delete a directory from the code path.

Deletes a directory from the code path. The argument can be @@ -417,7 +417,7 @@ zip:create("mnesia-4.4.7.ez", - + Replace a directory with another in the code path.

Replaces an old occurrence of a directory @@ -441,7 +441,7 @@ zip:create("mnesia-4.4.7.ez", - + Load a module. @@ -460,7 +460,7 @@ zip:create("mnesia-4.4.7.ez", - + Load a module, residing in a specified file. @@ -477,7 +477,7 @@ zip:create("mnesia-4.4.7.ez", - + Ensure that a module is loaded.

Tries to load a module in the same way as @@ -489,7 +489,7 @@ zip:create("mnesia-4.4.7.ez", - + Load object code for a module. @@ -639,7 +639,7 @@ ok = code:finish_loading(Prepared), - + Remove current code for a module.

Removes the current code for Module, that is, @@ -652,7 +652,7 @@ ok = code:finish_loading(Prepared), - + Remove old code for a module.

Purges the code for Module, that is, removes code @@ -668,7 +668,7 @@ ok = code:finish_loading(Prepared), - + Remove old code for a module, unless no process uses it.

Purges the code for Module, that is, removes code @@ -683,7 +683,7 @@ ok = code:finish_loading(Prepared), - + Check if a module is loaded. @@ -702,7 +702,7 @@ ok = code:finish_loading(Prepared), - + Get all loaded modules. @@ -716,7 +716,7 @@ ok = code:finish_loading(Prepared), - + The object code file of a module. @@ -731,7 +731,7 @@ ok = code:finish_loading(Prepared), - + Gets the object code for a module.

Searches the code path for the object code of module @@ -750,7 +750,7 @@ rpc:call(Node, code, load_binary, [Module, Filename, Binary]), - + Root directory of Erlang/OTP.

Returns the root directory of Erlang/OTP, which is @@ -762,7 +762,7 @@ rpc:call(Node, code, load_binary, [Module, Filename, Binary]), - + Library directory of Erlang/OTP.

Returns the library directory, $OTPROOT/lib, where @@ -774,7 +774,7 @@ rpc:call(Node, code, load_binary, [Module, Filename, Binary]), - + Library directory for an application.

Returns the path @@ -807,7 +807,7 @@ rpc:call(Node, code, load_binary, [Module, Filename, Binary]), - + Subdirectory for an application.

Returns the path to a subdirectory directly under the top @@ -827,7 +827,7 @@ rpc:call(Node, code, load_binary, [Module, Filename, Binary]), - + Library directory for the compiler.

Returns the compiler library directory. Equivalent to @@ -835,7 +835,7 @@ rpc:call(Node, code, load_binary, [Module, Filename, Binary]), - + Priv directory for an application.

Returns the path to the priv directory in an @@ -846,7 +846,7 @@ rpc:call(Node, code, load_binary, [Module, Filename, Binary]), - + Object code file extension.

Returns the object code file extension corresponding to @@ -854,7 +854,7 @@ rpc:call(Node, code, load_binary, [Module, Filename, Binary]), - + Mark a directory as sticky.

Marks Dir as sticky.

@@ -862,7 +862,7 @@ rpc:call(Node, code, load_binary, [Module, Filename, Binary]),
- + Remove a sticky directory mark.

Unsticks a directory that is marked as @@ -871,7 +871,7 @@ rpc:call(Node, code, load_binary, [Module, Filename, Binary]), - + Test if a module is sticky.

Returns true if Module is the @@ -882,7 +882,7 @@ rpc:call(Node, code, load_binary, [Module, Filename, Binary]), - + Full name of a file located in the code path.

Searches the code path for Filename, a file of @@ -893,7 +893,7 @@ rpc:call(Node, code, load_binary, [Module, Filename, Binary]), - + Search for modules with identical names.

Searches all directories in the code path for module names with @@ -943,7 +943,7 @@ rpc:call(Node, code, load_binary, [Module, Filename, Binary]), - + Test if a module has native code.

Returns:

diff --git a/lib/kernel/doc/src/disk_log.xml b/lib/kernel/doc/src/disk_log.xml index 884cb32c0c..e308b06f3c 100644 --- a/lib/kernel/doc/src/disk_log.xml +++ b/lib/kernel/doc/src/disk_log.xml @@ -34,7 +34,7 @@ D disk_log.sgml - disk_log + disk_log A disk-based term logging facility.

disk_log is a disk-based term logger that enables @@ -238,7 +238,7 @@ - + Return the accessible disk logs on the current node.

Returns the names of the disk logs accessible on the current node. @@ -248,8 +248,8 @@ - - + + Asynchronously log an item on to a disk log. @@ -275,8 +275,8 @@ - - + + Asynchronously log many items on to a disk log. @@ -303,8 +303,8 @@ - - + + Block a disk log. @@ -330,21 +330,21 @@ - + Change option head or head_func for an owner of a disk log.

Changes the value of option head or head_func for an owner of a disk log.

- + Change option notify for an owner of a disk log.

Changes the value of option notify for an owner of a disk log.

- + Change the size of an open disk log.

Changes the size of an open log. @@ -384,10 +384,10 @@ - - - - + + + + Read a chunk of items written to a disk log. @@ -447,7 +447,7 @@ - + Return information about a chunk continuation of a disk log.

Returns the pair {node, Node}, @@ -457,7 +457,7 @@ - + Step forward or backward among the wrap log files of a disk log.

Can be used with chunk/2,3 and bchunk/2,3 @@ -480,7 +480,7 @@ - + Close a disk log. @@ -505,7 +505,7 @@ - + Return an English description of a disk log error reply.

Given the error returned by any function in this module, @@ -517,7 +517,7 @@ - + Change to the next wrap log file of a disk log. @@ -534,7 +534,7 @@ - + Return information about a disk log. @@ -685,8 +685,8 @@ - - + + Close a disk log on one node. @@ -704,8 +704,8 @@ - - + + Log an item onto a disk log. @@ -739,8 +739,8 @@ - - + + Log many items onto a disk log. @@ -768,7 +768,7 @@ - + Open a disk log file. @@ -1041,7 +1041,7 @@ - + Return the name of the disk log handled by a pid.

Returns the log name @@ -1053,9 +1053,9 @@ - - - + + + Reopen a disk log and save the old log. @@ -1087,7 +1087,7 @@ - + Flush the contents of a disk log to the disk. @@ -1097,9 +1097,9 @@ - - - + + + Truncate a disk log. @@ -1129,7 +1129,7 @@ - + Unblock a disk log. diff --git a/lib/kernel/doc/src/erl_boot_server.xml b/lib/kernel/doc/src/erl_boot_server.xml index 4109251387..89f9855c49 100644 --- a/lib/kernel/doc/src/erl_boot_server.xml +++ b/lib/kernel/doc/src/erl_boot_server.xml @@ -28,7 +28,7 @@ - erl_boot_server + erl_boot_server Boot server for other Erlang machines.

This server is used to assist diskless Erlang nodes that fetch @@ -52,14 +52,14 @@ - + Add a slave to the list of allowed slaves.

Adds a Slave node to the list of allowed slave hosts.

- + Delete a slave from the list of allowed slaves.

Deletes a Slave node from the list of allowed slave @@ -67,7 +67,7 @@ - + Start the boot server.

Starts the boot server. Slaves is a list of @@ -76,7 +76,7 @@ - + Start the boot server and link to the the caller.

Starts the boot server and links to the caller. This function @@ -85,7 +85,7 @@ - + Return the current list of allowed slave hosts.

Returns the current list of allowed slave hosts.

diff --git a/lib/kernel/doc/src/erl_ddll.xml b/lib/kernel/doc/src/erl_ddll.xml index 75114e015c..f2d5e1b397 100644 --- a/lib/kernel/doc/src/erl_ddll.xml +++ b/lib/kernel/doc/src/erl_ddll.xml @@ -28,7 +28,7 @@ - erl_ddll + erl_ddll Dynamic driver loader and linker.

This module provides an interface for loading @@ -196,7 +196,7 @@ - + Remove a monitor for a driver.

Removes a driver monitor in much the same way as @@ -212,7 +212,7 @@ - + Format an error descriptor.

Takes an ErrorDesc returned by load, unload, or @@ -229,7 +229,7 @@ - + Retrieve information about all drivers.

Returns a list of tuples {DriverName, InfoList}, @@ -240,7 +240,7 @@ - + Retrieve information about one driver.

Returns a list of tuples {Tag, Value}, @@ -266,7 +266,7 @@ - + Retrieve specific information about one driver.

Returns specific information about one aspect of a driver. @@ -328,7 +328,7 @@ - + Load a driver.

Loads and links the dynamic driver Name. @@ -390,7 +390,7 @@ - + Load a driver.

Works essentially as load/2, but loads the driver @@ -413,7 +413,7 @@ - + List loaded drivers.

Returns a list of all the available drivers, both @@ -425,7 +425,7 @@ - + Create a monitor for a driver.

Creates a driver monitor and works in many @@ -588,7 +588,7 @@ - + Replace a driver.

Reloads the driver named Name from a possibly @@ -626,7 +626,7 @@ - + Replace a driver.

Works exactly as reload/2, @@ -644,7 +644,7 @@ - + Load a driver.

Provides more control than the @@ -931,7 +931,7 @@ - + Unload a driver.

This is the low-level function to unload (or decrement @@ -1116,7 +1116,7 @@ - + Unload a driver.

Unloads, or at least dereferences the driver named @@ -1143,7 +1143,7 @@ - + Unload a driver.

Unloads, or at least dereferences the driver named diff --git a/lib/kernel/doc/src/error_handler.xml b/lib/kernel/doc/src/error_handler.xml index 28d15d0b67..eb01e87aee 100644 --- a/lib/kernel/doc/src/error_handler.xml +++ b/lib/kernel/doc/src/error_handler.xml @@ -30,7 +30,7 @@ - error_handler + error_handler Default system error handler.

This module defines what happens when certain types @@ -51,7 +51,7 @@ - + Called when an undefined function is encountered. A (possibly empty) list of arguments Arg1,..,ArgN @@ -93,7 +93,7 @@ - + Called when an undefined lambda (fun) is encountered. A (possibly empty) list of arguments Arg1,..,ArgN diff --git a/lib/kernel/doc/src/error_logger.xml b/lib/kernel/doc/src/error_logger.xml index 8cb3e2ce16..c170b4fa34 100644 --- a/lib/kernel/doc/src/error_logger.xml +++ b/lib/kernel/doc/src/error_logger.xml @@ -28,7 +28,7 @@ - error_logger + error_logger Erlang error logger. @@ -76,8 +76,8 @@ - - + + Add an event handler to the error logger.

Adds a new event handler to the error logger. The event @@ -96,7 +96,7 @@ - + Delete an event handler from the error logger.

Deletes an event handler from the error logger by calling @@ -108,9 +108,9 @@ - - - + + + Log a standard error event.

Log a standard error event. The Format @@ -142,7 +142,7 @@ ok - + Log a standard error event.

Log a standard error event. Error logger forwards the event @@ -169,7 +169,7 @@ ok - + Log a user-defined error event.

Log a user-defined error event. Error logger forwards the @@ -211,8 +211,8 @@ ok - - + + Log a standard information event.

Log a standard information event. The Format @@ -244,7 +244,7 @@ ok - + Log a standard information event.

Log a standard information event. Error logger forwards the @@ -271,7 +271,7 @@ ok - + Log a user-defined information event.

Log a user-defined information event. Error logger forwards @@ -294,9 +294,9 @@ ok - - - + + + Enable or disable error printouts to a file. @@ -346,7 +346,7 @@ ok - + Enable or disable printouts to the terminal.

Enables (Flag == true) or disables @@ -363,7 +363,7 @@ ok - + Return the current mapping for warning events.

Returns the current mapping for warning events. Events sent @@ -400,8 +400,8 @@ ok - - + + Log a standard warning event.

Log a standard warning event. The Format @@ -429,7 +429,7 @@ ok - + Log a standard warning event.

Log a standard warning event. Error logger forwards the event @@ -446,7 +446,7 @@ ok - + Log a user-defined warning event.

Log a user-defined warning event. Error logger forwards the diff --git a/lib/kernel/doc/src/file.xml b/lib/kernel/doc/src/file.xml index 87ac8071c6..fc25e83d40 100644 --- a/lib/kernel/doc/src/file.xml +++ b/lib/kernel/doc/src/file.xml @@ -28,7 +28,7 @@ - file + file File interface module.

This module provides an interface to the file system.

@@ -209,7 +209,7 @@
- + Change group of a file.

Changes group of a file. See @@ -225,7 +225,7 @@ - + Change owner of a file.

Changes owner of a file. See @@ -233,7 +233,7 @@ - + Change owner and group of a file.

Changes owner and group of a file. See @@ -241,7 +241,7 @@ - + Change the modification time of a file.

Changes the modification and access times of a file. See @@ -249,7 +249,7 @@ - + Change the modification and last access time of a file.

Changes the modification and last access times of a file. See @@ -257,7 +257,7 @@ - + Close a file.

Closes the file referenced by IoDevice. It mostly @@ -270,7 +270,7 @@ - + Read Erlang terms from a file.

Reads Erlang terms, separated by '.', from @@ -308,8 +308,8 @@ f.txt: {person, "kalle", 25}. - - + + Copy file contents.

Copies ByteCount bytes from @@ -369,7 +369,7 @@ f.txt: {person, "kalle", 25}. - + Delete a directory.

Tries to delete directory Dir. @@ -405,7 +405,7 @@ f.txt: {person, "kalle", 25}. - + Delete a file.

Tries to delete file Filename. @@ -442,7 +442,7 @@ f.txt: {person, "kalle", 25}. - + Evaluate Erlang expressions in a file.

Reads and evaluates Erlang expressions, separated by '.' (or @@ -476,7 +476,7 @@ f.txt: {person, "kalle", 25}. - + Evaluate Erlang expressions in a file.

The same as eval/1, but the variable bindings @@ -486,7 +486,7 @@ f.txt: {person, "kalle", 25}. - + Return a descriptive string for an error reason.

Given the error reason returned by any function in this @@ -494,7 +494,7 @@ f.txt: {person, "kalle", 25}. - + Get the current working directory.

Returns {ok, Dir}, where Dir @@ -516,7 +516,7 @@ f.txt: {person, "kalle", 25}. - + Get the current working directory for the specified drive.

Returns {ok, Dir} or @@ -547,7 +547,7 @@ f.txt: {person, "kalle", 25}. - + List files in a directory.

Lists all files in a directory, except files @@ -603,7 +603,7 @@ f.txt: {person, "kalle", 25}. - + Make a directory.

Tries to create directory Dir. Missing parent @@ -637,7 +637,7 @@ f.txt: {person, "kalle", 25}. - + Make a hard link to a file.

Makes a hard link from Existing to @@ -666,7 +666,7 @@ f.txt: {person, "kalle", 25}. - + Make a symbolic link to a file or directory.

Creates a symbolic link New to @@ -714,7 +714,7 @@ f.txt: {person, "kalle", 25}. - + Open a file.

Opens file File in the mode determined @@ -997,7 +997,7 @@ f.txt: {person, "kalle", 25}. - + Read Erlang terms from a file.

Searches the path Path (a list of directory @@ -1039,7 +1039,7 @@ f.txt: {person, "kalle", 25}. - + Evaluate Erlang expressions in a file.

Searches the path Path (a list of directory @@ -1085,7 +1085,7 @@ f.txt: {person, "kalle", 25}. - + Open a file.

Searches the path Path (a list of directory @@ -1114,7 +1114,7 @@ f.txt: {person, "kalle", 25}. - + Evaluate and return the value of Erlang expressions in a file.

Searches the path Path (a list of directory @@ -1158,7 +1158,7 @@ f.txt: {person, "kalle", 25}. - + Evaluate and return the value of Erlang expressions in a file.

The same as path_script/2 but the variable bindings @@ -1168,7 +1168,7 @@ f.txt: {person, "kalle", 25}. - + Return the name of the file handled by a pid.

If Pid is an I/O device, that is, a pid returned from @@ -1193,7 +1193,7 @@ f.txt: {person, "kalle", 25}. - + Set position in a file.

Sets the position of the file referenced by IoDevice @@ -1245,7 +1245,7 @@ f.txt: {person, "kalle", 25}. - + Read from a file at certain positions.

Performs a sequence of pread/3 in one operation, @@ -1263,7 +1263,7 @@ f.txt: {person, "kalle", 25}. - + Read from a file at a certain position.

Combines position/2 and read/2 in one @@ -1283,7 +1283,7 @@ f.txt: {person, "kalle", 25}. - + Write to a file at certain positions.

Performs a sequence of pwrite/3 in one operation, @@ -1298,7 +1298,7 @@ f.txt: {person, "kalle", 25}. - + Write to a file at a certain position.

Combines position/2 and write/2 in one @@ -1317,7 +1317,7 @@ f.txt: {person, "kalle", 25}. - + Read from a file.

Reads Number bytes/characters from the file @@ -1371,7 +1371,7 @@ f.txt: {person, "kalle", 25}. - + Read a file.

Returns {ok, Binary}, where @@ -1407,7 +1407,7 @@ f.txt: {person, "kalle", 25}. - + Retrieve information about a file. @@ -1562,7 +1562,7 @@ f.txt: {person, "kalle", 25}. - + Read a line from a file.

Reads a line of bytes/characters from the file referenced by @@ -1619,7 +1619,7 @@ f.txt: {person, "kalle", 25}. - + See what a link is pointing to.

Returns @@ -1677,7 +1677,7 @@ f.txt: {person, "kalle", 25}. - + Retrieve information about a link or file. @@ -1699,7 +1699,7 @@ f.txt: {person, "kalle", 25}. - + Rename a file.

Tries to rename the file Source to @@ -1762,7 +1762,7 @@ f.txt: {person, "kalle", 25}. - + Evaluate and return the value of Erlang expressions in a file.

Reads and evaluates Erlang expressions, separated by '.' (or @@ -1797,7 +1797,7 @@ f.txt: {person, "kalle", 25}. - + Evaluate and return the value of Erlang expressions in a file.

The same as script/1 but the variable bindings @@ -1843,7 +1843,7 @@ f.txt: {person, "kalle", 25}. - + Set the current working directory.

Sets the current working directory of the file server to @@ -1890,7 +1890,7 @@ f.txt: {person, "kalle", 25}. - + Synchronize the in-memory state of a file with that on the physical medium.

Ensures that any buffers kept by the operating system @@ -1906,7 +1906,7 @@ f.txt: {person, "kalle", 25}. - + Truncate a file.

Truncates the file referenced by IoDevice at @@ -1915,7 +1915,7 @@ f.txt: {person, "kalle", 25}. - + Write to a file.

Writes Bytes to the file referenced by @@ -1941,7 +1941,7 @@ f.txt: {person, "kalle", 25}. - + Write a file.

Writes the contents of the iodata term Bytes @@ -1978,7 +1978,7 @@ f.txt: {person, "kalle", 25}. - + Write a file.

Same as write_file/2, but takes a third argument @@ -1989,7 +1989,7 @@ f.txt: {person, "kalle", 25}. - + Change file information. diff --git a/lib/kernel/doc/src/gen_sctp.xml b/lib/kernel/doc/src/gen_sctp.xml index 591079aef8..1e7009b3a8 100644 --- a/lib/kernel/doc/src/gen_sctp.xml +++ b/lib/kernel/doc/src/gen_sctp.xml @@ -32,7 +32,7 @@ A gen_sctp.xml - gen_sctp + gen_sctp Functions for communicating with sockets using the SCTP protocol. @@ -100,7 +100,7 @@ - + Abnormally terminate the association specified by Assoc, without flushing of unsent data. @@ -113,7 +113,7 @@ - + Close the socket and all associations on it.

Closes the socket and all associations on it. The unsent @@ -128,7 +128,7 @@ - + Same as connect(Socket, Addr, Port, Opts, infinity).

Same as connect(Socket, Addr, @@ -137,7 +137,7 @@ - + Establish a new association for socket Socket, with a peer (SCTP server socket). @@ -248,7 +248,7 @@ connect(Socket, Ip, Port>, - + Assign a new controlling process pid to the socket.

Assigns a new controlling process Pid to @@ -259,7 +259,7 @@ connect(Socket, Ip, Port>, - + Gracefully terminate the association specified by Assoc, with flushing of all unsent data. @@ -272,7 +272,7 @@ connect(Socket, Ip, Port>, - + Translate an SCTP error number into a string.

Translates an SCTP error number from, for example, @@ -283,8 +283,8 @@ connect(Socket, Ip, Port>, - - + + Set up a socket to listen.

Sets up a socket to listen on the IP address and port number @@ -300,10 +300,10 @@ connect(Socket, Ip, Port>, - - - - + + + + Create an SCTP socket and binds it to local addresses.

Creates an SCTP socket and binds it to the local addresses @@ -387,8 +387,8 @@ connect(Socket, Ip, Port>, - - + + Receive a message from a socket.

Receives the Data message from any association @@ -532,7 +532,7 @@ connect(Socket, Ip, Port>, - + Send a message using an #sctp_sndrcvinfo{}record.

Sends the Data message with all sending @@ -547,7 +547,7 @@ connect(Socket, Ip, Port>, - + Send a message over an existing association and specified stream. diff --git a/lib/kernel/doc/src/gen_tcp.xml b/lib/kernel/doc/src/gen_tcp.xml index 24d63693fd..fc16473393 100644 --- a/lib/kernel/doc/src/gen_tcp.xml +++ b/lib/kernel/doc/src/gen_tcp.xml @@ -27,7 +27,7 @@ 1997-10-24 A - gen_tcp + gen_tcp Interface to TCP/IP sockets.

This module provides functions for communicating @@ -116,8 +116,8 @@ do_recv(Sock, Bs) -> - - + + Accept an incoming connection request on a listening socket. Returned by listen/2. @@ -163,7 +163,7 @@ do_recv(Sock, Bs) -> - + Close a TCP socket.

Closes a TCP socket.

@@ -188,8 +188,8 @@ do_recv(Sock, Bs) ->
- - + + Connect to a TCP port.

Connects to a server on TCP port Port on the host @@ -268,7 +268,7 @@ do_recv(Sock, Bs) -> - + Change controlling process of a socket.

Assigns a new controlling process Pid to @@ -292,7 +292,7 @@ do_recv(Sock, Bs) -> - + Set up a socket to listen on a port.

Sets up a socket to listen on port Port on @@ -349,8 +349,8 @@ do_recv(Sock, Bs) -> - - + + Receive a packet from a passive socket. See the description of HttpPacket in @@ -375,7 +375,7 @@ do_recv(Sock, Bs) -> - + Send a packet.

Sends a packet on a socket.

@@ -386,7 +386,7 @@ do_recv(Sock, Bs) ->
- + Asynchronously close a socket.

Closes a socket in one or two directions.

diff --git a/lib/kernel/doc/src/gen_udp.xml b/lib/kernel/doc/src/gen_udp.xml index 840ca3c188..d20fc1fdfd 100644 --- a/lib/kernel/doc/src/gen_udp.xml +++ b/lib/kernel/doc/src/gen_udp.xml @@ -28,7 +28,7 @@ 1997-12-03 A - gen_udp + gen_udp Interface to UDP sockets.

This module provides functions for communicating @@ -53,7 +53,7 @@ - + Close a UDP socket.

Closes a UDP socket.

@@ -61,7 +61,7 @@
- + Change controlling process of a socket.

Assigns a new controlling process Pid to @@ -77,8 +77,8 @@ - - + + Associate a UDP port number with the process calling it.

Associates a UDP port number (Port) with the @@ -189,8 +189,8 @@ - - + + Receive a packet from a passive socket.

@@ -213,7 +213,7 @@ - + Send a packet.

diff --git a/lib/kernel/doc/src/global.xml b/lib/kernel/doc/src/global.xml index 4442741f54..dfe71de5ce 100644 --- a/lib/kernel/doc/src/global.xml +++ b/lib/kernel/doc/src/global.xml @@ -28,7 +28,7 @@ 1997-11-17 - global + global A global name registration facility.

This module consists of the following services:

@@ -100,8 +100,8 @@ - - + + Delete a lock.

Deletes the lock Id synchronously.

@@ -109,7 +109,7 @@
- + Name resolving function that notifies both pids.

Can be used as a name resolving function for @@ -123,7 +123,7 @@ - + Name resolving function that kills one pid.

Can be used as a name resolving function for @@ -136,7 +136,7 @@ - + Name resolving function that notifies one pid.

Can be used as a name resolving function for @@ -150,8 +150,8 @@ - - + + Atomically re-register a name. {Module, Function} @@ -167,8 +167,8 @@ - - + + Globally register a name for a pid. {Module, Function} is also @@ -221,7 +221,7 @@ - + All globally registered names.

Returns a list of all globally registered names.

@@ -229,7 +229,7 @@
- + Send a message to a globally registered pid.

Sends message Msg to the pid globally registered @@ -241,9 +241,9 @@ - - - + + + Set a lock on the specified nodes. @@ -287,7 +287,7 @@ - + Synchronize the global name server.

Synchronizes the global name server with all nodes known to @@ -302,9 +302,9 @@ - - - + + + Micro transaction facility. @@ -322,7 +322,7 @@ - + Remove a globally registered name for a pid.

Removes the globally registered name Name from @@ -331,7 +331,7 @@ - + Get the pid with a specified globally registered name.

Returns the pid with the globally registered name diff --git a/lib/kernel/doc/src/global_group.xml b/lib/kernel/doc/src/global_group.xml index 8f947b9adf..74d15cd476 100644 --- a/lib/kernel/doc/src/global_group.xml +++ b/lib/kernel/doc/src/global_group.xml @@ -28,7 +28,7 @@ 1998-12-18 B - global_group + global_group Grouping nodes to global name registration groups.

This module makes it possible to partition the nodes of a @@ -105,7 +105,7 @@ - + Return the global group names.

Returns a tuple containing the name of the global group that @@ -116,7 +116,7 @@ - + Information about global groups. @@ -173,7 +173,7 @@ - + Subscribe to node status changes.

Depending on Flag, the calling process @@ -187,7 +187,7 @@ - + Return the group nodes.

Returns the names of all group nodes, regardless of their @@ -196,7 +196,7 @@ - + Return globally registered names.

Returns a list of all names that are globally registered @@ -205,8 +205,8 @@ - - + + Send a message to a globally registered pid.

Searches for Name, globally registered on @@ -224,7 +224,7 @@ - + Synchronize the group nodes.

Synchronizes the group nodes, that is, the global name @@ -242,8 +242,8 @@ - - + + Get the pid with a specified globally registered name.

Searches for Name, globally registered on diff --git a/lib/kernel/doc/src/heart.xml b/lib/kernel/doc/src/heart.xml index 8c4fcbaacd..4243b1ffe8 100644 --- a/lib/kernel/doc/src/heart.xml +++ b/lib/kernel/doc/src/heart.xml @@ -28,7 +28,7 @@ 1998-01-28 A - heart + heart Heartbeat monitoring of an Erlang runtime system.

This modules contains the interface to the heart process. @@ -119,7 +119,7 @@ - + Set a temporary reboot command.

Sets a temporary reboot command. This command is used if @@ -136,7 +136,7 @@ - + Clear the temporary boot command.

Clears the temporary boot command. If the system terminates, @@ -145,7 +145,7 @@ - + Get the temporary reboot command.

Gets the temporary reboot command. If the command is cleared, diff --git a/lib/kernel/doc/src/inet.xml b/lib/kernel/doc/src/inet.xml index 8e7ca99084..104c698591 100644 --- a/lib/kernel/doc/src/inet.xml +++ b/lib/kernel/doc/src/inet.xml @@ -28,7 +28,7 @@ 1998-02-04 A - inet + inet Access to TCP/IP protocols.

This module provides access to TCP/IP protocols.

@@ -298,7 +298,7 @@ fe80::204:acff:fe17:bf38 - + Close a socket of any type.

Closes a socket of any type.

@@ -306,7 +306,7 @@ fe80::204:acff:fe17:bf38
- + Return a descriptive string for an error reason.

Returns a diagnostic error string. For possible POSIX values and @@ -316,7 +316,7 @@ fe80::204:acff:fe17:bf38 - + Return a list of IP configuration parameters.

@@ -335,7 +335,7 @@ fe80::204:acff:fe17:bf38 - + Return the IP address for a host.

Returns the IP address for Host as a tuple of @@ -345,7 +345,7 @@ fe80::204:acff:fe17:bf38 - + Return the IP addresses for a host.

Returns a list of all IP addresses for Host. @@ -355,7 +355,7 @@ fe80::204:acff:fe17:bf38 - + Return a hostent record for the host with the specified address. @@ -364,7 +364,7 @@ fe80::204:acff:fe17:bf38 - + Return a hostent record for the host with the specified name. @@ -376,7 +376,7 @@ fe80::204:acff:fe17:bf38 - + Return a hostent record for the host with the specified name. @@ -386,7 +386,7 @@ fe80::204:acff:fe17:bf38 - + Return the local hostname.

Returns the local hostname. Never fails.

@@ -459,7 +459,7 @@ fe80::204:acff:fe17:bf38
- + Get one or more options for a socket.

Gets one or more options for a socket. For a list of available @@ -529,8 +529,8 @@ get_tcpi_sacked(Sock) -> - - + + Get one or more statistic options for a socket. @@ -728,7 +728,7 @@ get_tcpi_sacked(Sock) -> - + Return the address and port for the other end of a connection. @@ -774,7 +774,7 @@ get_tcpi_sacked(Sock) -> - + Return the local port number for a socket.

Returns the local port number for a socket.

@@ -782,7 +782,7 @@ get_tcpi_sacked(Sock) ->
- + Set one or more options for a socket.

Sets one or more options for a socket.

@@ -1486,7 +1486,7 @@ inet:setopts(Sock,[{raw,6,8,<<30:32/native>>}]),]]>
- + Return the local address and port number for a socket. diff --git a/lib/kernel/doc/src/inet_res.xml b/lib/kernel/doc/src/inet_res.xml index 351d86a93a..1904e371f7 100644 --- a/lib/kernel/doc/src/inet_res.xml +++ b/lib/kernel/doc/src/inet_res.xml @@ -28,7 +28,7 @@ 2009-09-11 A - inet_res + inet_res A rudimentary DNS client.

This module performs DNS name resolving to recursive name servers.

@@ -185,8 +185,8 @@ inet_dns:record_type(_) -> undefined. - - + + Resolve a DNS record of the specified type for the specified host. @@ -205,8 +205,8 @@ inet_dns:record_type(_) -> undefined. - - + + Return a hostent record for the host with the specified address. @@ -217,9 +217,9 @@ inet_dns:record_type(_) -> undefined. - - - + + + Return a hostent record for the host with the specified name. @@ -235,9 +235,9 @@ inet_dns:record_type(_) -> undefined. - - - + + + Resolve the DNS data for the record of the specified type and class for the specified name. @@ -257,9 +257,9 @@ inet_dns:record_type(_) -> undefined. - - - + + + Resolve a DNS record of the specified type and class for the specified name. @@ -326,9 +326,9 @@ example_lookup(Name, Class, Type) -> - - - + + + Resolve a DNS record of the specified type and class for the specified name. @@ -344,8 +344,8 @@ example_lookup(Name, Class, Type) -> - - + + Resolve a DNS record of the specified type and class for the specified name. diff --git a/lib/kernel/doc/src/net_adm.xml b/lib/kernel/doc/src/net_adm.xml index 6957a3b5e4..c3e1619f1b 100644 --- a/lib/kernel/doc/src/net_adm.xml +++ b/lib/kernel/doc/src/net_adm.xml @@ -28,7 +28,7 @@ 1996-09-10 A - net_adm + net_adm Various Erlang net administration routines.

This module contains various network utility functions.

@@ -36,7 +36,7 @@ - + Official name of a host.

Returns the official name of Host, or @@ -46,7 +46,7 @@ - + Read file .hosts.erlang.

Reads file .hosts.erlang, see section @@ -58,7 +58,7 @@ - + Name of the local host.

Returns the name of the local host. If Erlang was started @@ -68,8 +68,8 @@ - - + + Names of Erlang nodes at a host.

Similar to epmd -names, see @@ -86,7 +86,7 @@ - + Set up a connection to a node.

Sets up a connection to Node. Returns @@ -95,8 +95,8 @@ - - + + Lookup and connect to all nodes at all hosts in .hosts.erlang. @@ -117,8 +117,8 @@ - - + + Lookup and connect to all nodes at specified hosts. diff --git a/lib/kernel/doc/src/net_kernel.xml b/lib/kernel/doc/src/net_kernel.xml index 1ed5d5cca1..419d3cad84 100644 --- a/lib/kernel/doc/src/net_kernel.xml +++ b/lib/kernel/doc/src/net_kernel.xml @@ -28,7 +28,7 @@ 1996-09-10 A - net_kernel + net_kernel Erlang networking kernel.

The net kernel is a system process, registered as @@ -81,7 +81,7 @@ $ erl -sname foobar - + Permit access to a specified set of nodes

Permits access to the specified set of nodes.

@@ -98,7 +98,7 @@ $ erl -sname foobar
- + Establish a connection to a node.

Establishes a connection to Node. Returns @@ -110,7 +110,7 @@ $ erl -sname foobar - + Get net_ticktime.

Gets net_ticktime (see @@ -146,8 +146,8 @@ $ erl -sname foobar - - + + Subscribe to node status change messages.

The calling process subscribes or unsubscribes to node @@ -267,8 +267,8 @@ $ erl -sname foobar - - + + Set net_ticktime.

Sets net_ticktime (see @@ -345,9 +345,9 @@ $ erl -sname foobar - start([Name]) -> {ok, pid()} | {error, Reason} - start([Name, NameType]) -> {ok, pid()} | {error, Reason} - start([Name, NameType, Ticktime]) -> {ok, pid()} | {error, Reason} + start([Name]) -> {ok, pid()} | {error, Reason} + start([Name, NameType]) -> {ok, pid()} | {error, Reason} + start([Name, NameType, Ticktime]) -> {ok, pid()} | {error, Reason} Turn an Erlang runtime system into a distributed node. Name = atom() @@ -364,7 +364,7 @@ $ erl -sname foobar - + Turn a node into a non-distributed Erlang runtime system.

Turns a distributed node into a non-distributed node. For diff --git a/lib/kernel/doc/src/os.xml b/lib/kernel/doc/src/os.xml index 9bd859452c..0500e4cfb3 100644 --- a/lib/kernel/doc/src/os.xml +++ b/lib/kernel/doc/src/os.xml @@ -28,7 +28,7 @@ - os + os Operating system-specific functions.

The functions in this module are operating system-specific. @@ -134,7 +134,7 @@ - + Execute a command in a shell of the target OS. @@ -173,8 +173,8 @@ DirOut = os:cmd("dir"), % on Win32 platform - - + + Absolute filename of a program.

These two functions look up an executable program, with the @@ -190,7 +190,7 @@ DirOut = os:cmd("dir"), % on Win32 platform - + List all environment variables.

Returns a list of all environment variables. @@ -205,7 +205,7 @@ DirOut = os:cmd("dir"), % on Win32 platform - + Get the value of an environment variable.

Returns the Value of the environment variable @@ -235,7 +235,7 @@ DirOut = os:cmd("dir"), % on Win32 platform - + Return the process identifier of the emulator process. @@ -251,7 +251,7 @@ DirOut = os:cmd("dir"), % on Win32 platform - + Set a new value for an environment variable.

Sets a new Value for environment variable @@ -332,7 +332,7 @@ DirOut = os:cmd("dir"), % on Win32 platform - + Current OS system time on the erlang:timestamp/0 format. Timestamp = {MegaSecs, Secs, MicroSecs} @@ -397,7 +397,7 @@ calendar:now_to_universal_time(TS), - + Return the OS family and, in some cases, the OS name of the current OS. @@ -429,7 +429,7 @@ calendar:now_to_universal_time(TS), - + Return the OS versions.

Returns the OS version. diff --git a/lib/kernel/doc/src/pg2.xml b/lib/kernel/doc/src/pg2.xml index 0631b317b4..058d711756 100644 --- a/lib/kernel/doc/src/pg2.xml +++ b/lib/kernel/doc/src/pg2.xml @@ -32,7 +32,7 @@ A2 pg2.xml - pg2 + pg2 Distributed named process groups.

This module implements process groups. Each message can be sent @@ -66,7 +66,7 @@ - + Create a new, empty process group.

Creates a new, empty process group. The group is globally @@ -75,7 +75,7 @@ - + Delete a process group.

Deletes a process group.

@@ -83,7 +83,7 @@
- + Common dispatch function.

A useful dispatch function that can be used from @@ -93,7 +93,7 @@ - + Return all local processes in a group.

Returns all processes running on the local node in the @@ -104,7 +104,7 @@ - + Return all processes in a group.

Returns all processes in the group Name. This @@ -114,7 +114,7 @@ - + Join a process to a group.

Joins the process Pid to the group Name. @@ -124,7 +124,7 @@ - + Make a process leave a group.

Makes the process Pid leave the group Name. @@ -134,8 +134,8 @@ - - + + Start the pg2 server.

Starts the pg2 server. Normally, the server does not need @@ -149,7 +149,7 @@ - + Return a list of all known groups.

Returns a list of all known groups.

diff --git a/lib/kernel/doc/src/rpc.xml b/lib/kernel/doc/src/rpc.xml index fab616e630..c55454506e 100644 --- a/lib/kernel/doc/src/rpc.xml +++ b/lib/kernel/doc/src/rpc.xml @@ -28,7 +28,7 @@ 1996-09-10 A - rpc + rpc Remote Procedure Call services.

This module contains services similar to Remote @@ -51,7 +51,7 @@ - + Broadcast a message asynchronously to a registered process on all nodes. @@ -61,7 +61,7 @@ - + Broadcast a message asynchronously to a registered process on specific nodes. @@ -72,7 +72,7 @@ - + Evaluate a function call on a node, asynchronous version. @@ -98,7 +98,7 @@ - + Evaluate a function call on a node in the RPC server's context. @@ -115,7 +115,7 @@ - + Evaluate a function call on a node in the RPC server's context. @@ -127,7 +127,7 @@ - + Evaluate a function call on a node.

Evaluates apply(Module, Function, @@ -138,7 +138,7 @@ - + Evaluate a function call on a node.

Evaluates apply(Module, Function, @@ -158,7 +158,7 @@ - + Run a function on a node ignoring the result.

Evaluates apply(Module, Function, @@ -171,7 +171,7 @@ - + Run a function on all nodes, ignoring the result.

Equivalent to eval_everywhere([node()|nodes()], @@ -181,7 +181,7 @@ - + Run a function on specific nodes, ignoring the result. @@ -192,7 +192,7 @@ - + Interact with the servers on a number of nodes.

Equivalent to multi_server_call([node()|nodes()], @@ -201,7 +201,7 @@ - + Interact with the servers on a number of nodes.

Can be used when interacting with servers called @@ -224,7 +224,7 @@ - + Evaluate a function call on a number of nodes.

Equivalent to multicall([node()|nodes()], Module, @@ -233,7 +233,7 @@ - + Evaluate a function call on a number of nodes.

Equivalent to multicall(Nodes, Module, @@ -242,7 +242,7 @@ - + Evaluate a function call on a number of nodes.

Equivalent to multicall([node()|nodes()], Module, @@ -252,7 +252,7 @@ - + Evaluate a function call on a number of nodes.

In contrast to an RPC, a multicall is an RPC that is sent @@ -288,7 +288,7 @@ - + Deliver the result of evaluating a function call on a node (non-blocking). @@ -297,7 +297,7 @@ - + Deliver the result of evaluating a function call on a node (non-blocking). @@ -315,7 +315,7 @@ - + Evaluate many function calls on all nodes in parallel. @@ -328,7 +328,7 @@ - + Information about a process.

Location transparent version of the BIF @@ -337,8 +337,8 @@ - - + + Information about a process.

Location transparent version of the BIF @@ -347,7 +347,7 @@ - + Parallel evaluation of mapping a function over a list. @@ -360,7 +360,7 @@ - + Broadcast a message synchronously to a registered process on all nodes. @@ -370,7 +370,7 @@ - + Broadcast a message synchronously to a registered process on specific nodes. @@ -391,7 +391,7 @@ - + Interact with a server on a node.

Can be used when interacting with a server called @@ -410,7 +410,7 @@ - + Deliver the result of evaluating a function call on a node (blocking). diff --git a/lib/kernel/doc/src/seq_trace.xml b/lib/kernel/doc/src/seq_trace.xml index 1a4a74419a..aa29223dd0 100644 --- a/lib/kernel/doc/src/seq_trace.xml +++ b/lib/kernel/doc/src/seq_trace.xml @@ -28,7 +28,7 @@ 1998-04-16 A - seq_trace + seq_trace Sequential tracing of messages.

Sequential tracing makes it possible to trace all messages @@ -51,7 +51,7 @@ - + Set the trace token

Sets the trace token for the calling process to Token. @@ -71,7 +71,7 @@ seq_trace:set_token(OldToken), % activate the trace token again - + Set a component of the trace token @@ -158,7 +158,7 @@ seq_trace:set_token(OldToken), % activate the trace token again - + Return the value of the trace token

Returns the value of the trace token for the calling process. @@ -169,7 +169,7 @@ seq_trace:set_token(OldToken), % activate the trace token again - + Return the value of a trace token component @@ -182,7 +182,7 @@ seq_trace:set_token(OldToken), % activate the trace token again - + Put the Erlang term TraceInfointo the sequential trace output

Puts the Erlang term TraceInfo into the sequential @@ -192,7 +192,7 @@ seq_trace:set_token(OldToken), % activate the trace token again - + Put the Erlang term TraceInfointo the sequential trace output

Same as print/1 with the additional condition that @@ -201,7 +201,7 @@ seq_trace:set_token(OldToken), % activate the trace token again - + Stop all sequential tracing on the local node

Sets the trace token to empty for all processes on the @@ -213,7 +213,7 @@ seq_trace:set_token(OldToken), % activate the trace token again - + Set the system tracer @@ -227,7 +227,7 @@ seq_trace:set_token(OldToken), % activate the trace token again - + Return the pid() or port() of the current system tracer. diff --git a/lib/kernel/doc/src/wrap_log_reader.xml b/lib/kernel/doc/src/wrap_log_reader.xml index 7fb9c1c023..5f37e7ec5f 100644 --- a/lib/kernel/doc/src/wrap_log_reader.xml +++ b/lib/kernel/doc/src/wrap_log_reader.xml @@ -32,7 +32,7 @@ A wrap_log_reader.sgml - wrap_log_reader + wrap_log_reader A service to read internally formatted wrap disk logs. @@ -65,8 +65,8 @@ - - + + Read a chunk of objects written to a wrap log. @@ -105,7 +105,7 @@ - + Close a log.

Closes a log file properly.

@@ -113,8 +113,8 @@
- - + + Open a log file. -- cgit v1.2.3