From 036c56d3ee969daa39c1e03de69744ba394f0fe3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bj=C3=B6rn-Egil=20Dahlberg?=
The character encodings used for atoms.
Encodes an atom in the binary format. Parameter
Encodes a string in the binary format. (A string in Erlang
is a list, but is encoded as a character array in the binary
- format.) The string is to be zero-terminated, except for
+ format.) The string is to be
Returns the type in
The return value is the number of characters written to the file
or string, or Used by a server process to register
- with the local name server epmd, thereby allowing
+ with the local name server EPMD, thereby allowing
other processes to send messages by using the registered name.
Before calling either of these functions, the process should
have called
Vsn is the version of the
A C node has access to names registered through the
-
Keys are strings, that is, zero-terminated arrays of characters, and +
Keys are strings, that is,
(In the example, the output has been formatted afterwards.)
P = processes(),
diff --git a/lib/erl_interface/doc/src/erl_connect.xml b/lib/erl_interface/doc/src/erl_connect.xml
index a027cb0a84..3796a763c3 100644
--- a/lib/erl_interface/doc/src/erl_connect.xml
+++ b/lib/erl_interface/doc/src/erl_connect.xml
@@ -165,7 +165,7 @@ erl_xconnect( &addr , ALIVE );
Initializes the module.
In particular, these functions are used to identify the name of the
C-node from which they are called. One of these functions must
- be called before any of the other functions in the erl_connect
+ be called before any of the other functions in the erl_connect
module are used.
stores for later use
information about:
@@ -196,7 +196,7 @@ erl_xconnect( &addr , ALIVE );
-
is the node name. It is to
- be of the form alivename@hostname.
+ be of the form alivename@hostname.
-
is the 32-bit IP address of
@@ -212,7 +212,7 @@ erl_xconnect( &addr , ALIVE );
and
variables on Windows. For more
details, see the
- kernel:auth module.
+ auth module in Kernel.
-
helps identifying a particular
@@ -255,7 +255,7 @@ if (!erl_connect_init(17, "samplecookiestring...", 0))
This function is used by a server process to register
- with the local name server epmd, thereby allowing
+ with the local name server EPMD, thereby allowing
other processes to send messages by using the registered name.
Before calling this function, the process should
have called and
diff --git a/lib/erl_interface/doc/src/erl_eterm.xml b/lib/erl_interface/doc/src/erl_eterm.xml
index 8a46c20432..ee10c3cf0b 100644
--- a/lib/erl_interface/doc/src/erl_eterm.xml
+++ b/lib/erl_interface/doc/src/erl_eterm.xml
@@ -201,13 +201,13 @@ erl_free_compound(list);
Extracts a specified element from an Erlang tuple.
-
+
specifies which element to retrieve
from . The elements are numbered starting
from 1.
is an Erlang term containing at least
elements.
-
+
Returns a new Erlang term corresponding to the requested element, or
NULL if was greater
than the arity of .
@@ -292,12 +292,12 @@ iohead ::= Binary
char * erl_iolist_to_string(list)
- Convert an I/O list to a zero-terminated string.
+ Convert an I/O list to a NULL -terminated string.
ETERM *list;
- Converts an I/O list to a '\0' terminated C string.
+ Converts an I/O list to a NULL -terminated C string.
is an Erlang term containing an I/O list.
The I/O list must not contain the integer 0, as C strings may not
contain this value except as a terminating marker.
@@ -344,14 +344,14 @@ iohead ::= Binary
contains a valid name for an atom.
and
- can be used to retrieve the atom name (as a null-terminated string).
+ can be used to retrieve the atom name (as a NULL -terminated string).
and return the length
of the atom name.
The UTF-8 variants were introduced in Erlang/OTP R16 and the
string returned by ERL_ATOM_PTR(atom) was not
- null-terminated on older releases.
+ NULL -terminated on older releases.
@@ -400,7 +400,7 @@ iohead ::= Binary
Creates a list from a sequence of bytes.
is a buffer containing a sequence of
- bytes. The buffer does not need to be zero-terminated.
+ bytes. The buffer does not need to be NULL -terminated.
is the length of
.
@@ -586,8 +586,8 @@ iohead ::= Binary
char *string;
- Creates a list from a zero-terminated string.
- is the zero-terminated sequence of
+
Creates a list from a NULL -terminated string.
+ is a NULL -terminated sequence of
characters
(that is, a C string) from which the list will be created.
Returns an Erlang list.
diff --git a/lib/erl_interface/doc/src/erl_format.xml b/lib/erl_interface/doc/src/erl_format.xml
index 9fe405d51c..170e984b34 100644
--- a/lib/erl_interface/doc/src/erl_format.xml
+++ b/lib/erl_interface/doc/src/erl_format.xml
@@ -89,8 +89,8 @@ erl_format("[{name,~a},{age,~i},{data,~w}]",
This function is used to perform pattern matching similar
- to that done in Erlang. For matching rules and more exemples, see
- section
+ to that done in Erlang. For matching rules and more examples, see
+ section
Pattern Matching in the Erlang Reference Manual.
is an Erlang term, possibly
diff --git a/lib/erl_interface/doc/src/erl_interface.xml b/lib/erl_interface/doc/src/erl_interface.xml
index a9d421bbeb..2a3831cf0f 100644
--- a/lib/erl_interface/doc/src/erl_interface.xml
+++ b/lib/erl_interface/doc/src/erl_interface.xml
@@ -11,7 +11,7 @@
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
-
+
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
@@ -19,7 +19,7 @@
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-
+
The Erl_Interface Library
@@ -500,7 +500,7 @@ erl_global_unregister(fd,servicename); ]]>
restoring them from a Mnesia table on an Erlang node. More detailed
information about the individual API functions can be found in the
Reference Manual.
- Keys are strings, i.e. 0-terminated arrays of characters, and values +
Keys are strings, i.e.
For an example, see section
-
Returns