From ad6e765bcd4f35a282ef00e38ed9129f3a5c1d83 Mon Sep 17 00:00:00 2001
From: Hans Bolinder
If
If
By default, all applications are loaded with permission
Use
Use
All application directories found in the additional directories
appears before the standard OTP applications, except for the
-
Environment variable
The code server uses module
The code server uses module
Normally,
This server can be started with the
This server can be started with the Kernel configuration
parameter
The
The support for loading code from archive files is
experimental. It is released before it is ready
to obtain early feedback. The file format, semantics,
diff --git a/lib/kernel/doc/src/erl_ddll.xml b/lib/kernel/doc/src/erl_ddll.xml
index a5ce58ef3e..75114e015c 100644
--- a/lib/kernel/doc/src/erl_ddll.xml
+++ b/lib/kernel/doc/src/erl_ddll.xml
@@ -201,7 +201,7 @@
Removes a driver monitor in much the same way as
Creates a driver monitor and works in many
ways as
This parameter is the name of the driver
to be used in subsequent calls to function
The Erlang error logger is an event manager (see
Initially, Also the Also the SASL application, if started, adds its own event
handler, which by default writes supervisor, crash, and progress
reports to the terminal. See
Warning events were introduced in Erlang/OTP R9C and are enabled by default as from Erlang/OTP 18.0. To retain backwards compatibility with existing user-defined event handlers, the warning events can be @@ -82,7 +82,7 @@
Adds a new event handler to the error logger. The event
handler must be implemented as a
Deletes an event handler from the error logger by calling
Example:
@@ -171,7 +171,7 @@ okThe
Example:
1> error_logger:info_msg("Something happened in ~p~n", [a_module]). @@ -235,7 +235,7 @@ ok
Enables or disables printout of standard events to a file.
This is done by adding or deleting the standard event handler
for output to file. Thus, calling this function overrides
- the value of the
Enabling file logging can be used together with calling
This is done by adding or deleting the standard event handler
for output to the terminal. Thus, calling this function overrides
- the value of the
See also section
See also section
The encoding of
The encoding of
The same as
If data is sent to an
Bytes written to the file by any means are translated to UTF-8 encoding before being stored on the disk file.
@@ -891,7 +891,7 @@ f.txt: {person, "kalle", 25}. So a file can be analyzed in latin1 encoding for, for example, a BOM, positioned beyond the BOM and then be set for the right encoding before further reading. For functions identifying BOMs, see module -This option is not allowed on
In previous versions of
The encoding of
The encoding of
@@ -1552,7 +1552,7 @@ f.txt: {person, "kalle", 25}.
raw line-oriented reading.
If encoding is set to something else than latin1 , the
read_line/1 call fails if the data contains characters larger than 255,
- why module stdlib:io(3) is to be
+ why module io(3) is to be
preferred when reading such a file.
The function returns:
@@ -1970,7 +1970,7 @@ f.txt: {person, "kalle", 25}.
Changes file information. Returns ok if successful,
otherwise {error, Reason } .
FileInfo is a record
- file_info , defined in the Kernel include file
+ file_info , defined in the Kernel include file
file.hrl . Include the following directive in the module
from which the function is called:
diff --git a/lib/kernel/doc/src/gen_tcp.xml b/lib/kernel/doc/src/gen_tcp.xml
index 83242c2df8..08454b9832 100644
--- a/lib/kernel/doc/src/gen_tcp.xml
+++ b/lib/kernel/doc/src/gen_tcp.xml
@@ -216,7 +216,7 @@ do_recv(Sock, Bs) ->
time-out in milliseconds. Defaults to infinity .
The default values for options specified to connect can
- be affected by the Kernel configuration parameter
+ be affected by the Kernel configuration parameter
inet_default_connect_options . For details, see
inet(3) .
@@ -293,7 +293,7 @@ do_recv(Sock, Bs) ->
accept/1,2 .
The default values for options specified to listen can
- be affected by the Kernel configuration parameter
+ be affected by the Kernel configuration parameter
inet_default_listen_options . For details, see
inet(3) .
@@ -307,7 +307,7 @@ do_recv(Sock, Bs) ->
See the description of
HttpPacket in
erlang:decode_packet/3
- in ERTS .
+ in ERTS.
Receives a packet from a socket in passive
diff --git a/lib/kernel/doc/src/inet.xml b/lib/kernel/doc/src/inet.xml
index 8cc21bf3e2..3f4e3684f4 100644
--- a/lib/kernel/doc/src/inet.xml
+++ b/lib/kernel/doc/src/inet.xml
@@ -36,7 +36,7 @@
ERTS User's Guide:
Inet Configuration for more information about how to
configure an Erlang runtime system for IP communication.
- The following two Kernel configuration parameters affect the
+
The following two Kernel configuration parameters affect the
behavior of all sockets opened on an Erlang node:
inet_default_connect_options can contain a list of
@@ -48,7 +48,7 @@
When accept is issued, the values of the listening socket options
are inherited. No such application variable is therefore needed for
accept .
- Using the Kernel configuration parameters above, one
+
Using the Kernel configuration parameters above, one
can set default options for all TCP sockets on a node, but use this
with care. Options such as {delay_send,true} can be
specified in this way. The following is an example of starting an Erlang
@@ -95,7 +95,7 @@ fe80::204:acff:fe17:bf38
- The record is defined in the Kernel include file
+
The record is defined in the Kernel include file
"inet.hrl" .
Add the following directive to the module:
@@ -391,7 +391,7 @@ get_tcpi_sacked(Sock) ->
<<_:28/binary,TcpiSacked:32/native,_/binary>> = Info,
TcpiSacked.]]>
Preferably, you would check the machine type, the operating system,
- and the Kernel version before executing anything similar to
+ and the Kernel version before executing anything similar to
this code.
The size of the user-level software buffer used by
the driver. Not to be confused with options
The socket message queue is set to a busy
state when the amount of data on the message
queue reaches this limit. Notice that this limit only
- concerns data that has not yet reached the
Senders of data to the socket are suspended if
either the socket message queue is busy or the socket
@@ -736,7 +736,7 @@ get_tcpi_sacked(Sock) ->
The socket is set to a busy state when the amount
- of data queued internally by the Senders of data to the socket are suspended if
either the socket message queue is busy or the socket
@@ -816,7 +816,7 @@ get_tcpi_sacked(Sock) ->
socket message queue is set in a not busy state when
the amount of data queued in the message queue falls
below this limit. Notice that this limit only concerns data
- that has not yet reached the Senders that are suspended because of either a
busy message queue or a busy socket are resumed
@@ -834,7 +834,7 @@ get_tcpi_sacked(Sock) ->
If the socket is in a busy state, the socket is
set in a not busy state when the amount of data
- queued internally by the Senders that are suspended because of a
busy message queue or a busy socket are resumed
@@ -954,7 +954,7 @@ setcap cap_sys_admin,cap_sys_ptrace,cap_dac_read_search+epi beam.smp
are returned with the format according to Notice that the default options for TCP/IP sockets can be
- changed with the This module is moved to the
- The The Kernel application has all the code necessary to run
the Erlang runtime system: file servers, code servers,
and so on. The The Kernel application is the first application started. It is
mandatory in the sense that the minimal system based on
- Erlang/OTP consists of Two standard error logger event handlers are defined in
- the The following configuration parameters are defined for the The following configuration parameters are defined for the Kernel
application. For more information about configuration parameters,
see file
A reasonable starting value for
The name (string) of an Inet user configuration file. For details,
see section
Starts the
Defaults to
Normally, connections are established automatically when
another node is referenced. This functionality can be disabled
- by setting
As from
As from Kernel version 2.11.4, and ERTS version 5.5.4, the following is guaranteed:
Notice that this is not guaranteed for
Notice that this is not guaranteed for Kernel versions before 2.11.4.
-As from
As from Kernel version 2.11.4, subscriptions can also be
made before the
As from
As from Kernel version 2.13, and ERTS version 5.7, the following is guaranteed:
Notice that this is not guaranteed for
Notice that this is not guaranteed for Kernel versions before 2.13.
The format of the node status change messages depends on
Dialyzer will generally emit warnings for any
calls that use undocumented argument types. Even if the
call happens to still work in R12B, you should correct
your code. A future release will adhere to the
diff --git a/lib/kernel/doc/src/rpc.xml b/lib/kernel/doc/src/rpc.xml
index 8cad9fe4fc..5944e9321a 100644
--- a/lib/kernel/doc/src/rpc.xml
+++ b/lib/kernel/doc/src/rpc.xml
@@ -320,7 +320,7 @@
Location transparent version of the BIF
-
Location transparent version of the BIF
-
This module is moved to the
-