From a519a52617a6a5bbdb8b17bdd892ab012cf8080b Mon Sep 17 00:00:00 2001
From: Sverker Eriksson
Date: Thu, 28 May 2015 12:33:11 +0200
Subject: erts: Cleanup fsummary lines in erl_nif docs
by removing all full stop.
---
erts/doc/src/erl_nif.xml | 64 ++++++++++++++++++++++++------------------------
1 file changed, 32 insertions(+), 32 deletions(-)
(limited to 'erts/doc')
diff --git a/erts/doc/src/erl_nif.xml b/erts/doc/src/erl_nif.xml
index 6a4fe5f8b7..e915c3b693 100644
--- a/erts/doc/src/erl_nif.xml
+++ b/erts/doc/src/erl_nif.xml
@@ -565,11 +565,11 @@ typedef enum {
void *enif_alloc(size_t size)
- Allocate dynamic memory.
+ Allocate dynamic memory
Allocate memory of size bytes. Return NULL if allocation failed.
intenif_alloc_binary(size_t size, ErlNifBinary* bin)
- Create a new binary.
+ Create a new binary
Allocate a new binary of size size
bytes. Initialize the structure pointed to by bin to
refer to the allocated binary. The binary must either be released by
@@ -596,7 +596,7 @@ typedef enum {
Allocate a memory managed resource object of type type and size size bytes.
voidenif_clear_env(ErlNifEnv* env)
- Clear an environment for reuse.
+ Clear an environment for reuse
Free all terms in an environment and clear it for reuse. The environment must
have been allocated with enif_alloc_env.
@@ -684,14 +684,14 @@ typedef enum {
size-1.
intenif_get_atom_length(ErlNifEnv* env, ERL_NIF_TERM term, unsigned* len, ErlNifCharEncoding encode)
- Get the length of atom term.
+ Get the length of atom term
Set *len to the length (number of bytes excluding
terminating null character) of the atom term with encoding
encode. Return true on success or false if term is not an
atom.
intenif_get_double(ErlNifEnv* env, ERL_NIF_TERM term, double* dp)
- Read a floating-point number term.
+ Read a floating-point number term
Set *dp to the floating point value of
term. Return true on success or false if term is not a float.
@@ -720,12 +720,12 @@ typedef enum {
non-empty list.
intenif_get_list_length(ErlNifEnv* env, ERL_NIF_TERM term, unsigned* len)
- Get the length of list term.
+ Get the length of list term
Set *len to the length of list term and return true,
or return false if term is not a list.
intenif_get_long(ErlNifEnv* env, ERL_NIF_TERM term, long int* ip)
- Read an long integer term.
+ Read an long integer term
Set *ip to the long integer value of term and
return true, or return false if term is not an integer or is
outside the bounds of type long int.
@@ -750,7 +750,7 @@ typedef enum {
intenif_get_string(ErlNifEnv* env,
ERL_NIF_TERM list, char* buf, unsigned size,
ErlNifCharEncoding encode)
- Get a C-string from a list.
+ Get a C-string from a list
Write a null-terminated string, in the buffer pointed to by
buf with size size, consisting of the characters
in the string list. The characters are written using encoding
@@ -763,7 +763,7 @@ typedef enum {
size is less than 1.
intenif_get_tuple(ErlNifEnv* env, ERL_NIF_TERM term, int* arity, const ERL_NIF_TERM** array)
- Inspect the elements of a tuple.
+ Inspect the elements of a tuple
If term is a tuple, set *array to point
to an array containing the elements of the tuple and set
*arity to the number of elements. Note that the array
@@ -773,25 +773,25 @@ typedef enum {
tuple.
intenif_get_uint(ErlNifEnv* env, ERL_NIF_TERM term, unsigned int* ip)
- Read an unsigned integer term.
+ Read an unsigned integer term
Set *ip to the unsigned integer value of term and
return true, or return false if term is not an unsigned integer or
is outside the bounds of type unsigned int.
intenif_get_uint64(ErlNifEnv* env, ERL_NIF_TERM term, ErlNifUInt64* ip)
- Read an unsigned 64-bit integer term.
+ Read an unsigned 64-bit integer term
Set *ip to the unsigned integer value of term and
return true, or return false if term is not an unsigned integer or
is outside the bounds of an unsigned 64-bit integer.
intenif_get_ulong(ErlNifEnv* env, ERL_NIF_TERM term, unsigned long* ip)
- Read an unsigned integer term.
+ Read an unsigned integer term
Set *ip to the unsigned long integer value of term
and return true, or return false if term is not an unsigned integer or is
outside the bounds of type unsigned long.
intenif_has_pending_exception(ErlNifEnv* env)
- Check if an exception has been raised.
+ Check if an exception has been raised
Return true if a pending exception is associated
with the environment env. The only possible exception is currently
badarg (see enif_make_badarg).
@@ -906,7 +906,7 @@ typedef enum {
ERL_NIF_TERMenif_make_badarg(ErlNifEnv* env)
- Make a badarg exception.
+ Make a badarg exception
Make a badarg exception to be returned from a NIF, and associate
it with the environment env. Once a NIF or any function
it calls invokes enif_make_badarg, the runtime ensures that a
@@ -925,14 +925,14 @@ typedef enum {
if enif_make_badarg has been invoked.
ERL_NIF_TERMenif_make_binary(ErlNifEnv* env, ErlNifBinary* bin)
- Make a binary term.
+ Make a binary term
Make a binary term from bin. Any ownership of
the binary data will be transferred to the created term and
bin should be considered read-only for the rest of the NIF
call and then as released.
ERL_NIF_TERMenif_make_copy(ErlNifEnv* dst_env, ERL_NIF_TERM src_term)
- Make a copy of a term.
+ Make a copy of a term
Make a copy of term src_term. The copy will be created in
environment dst_env. The source term may be located in any
environment.
@@ -973,7 +973,7 @@ typedef enum {
Create an integer term from a signed 64-bit integer.
ERL_NIF_TERMenif_make_list(ErlNifEnv* env, unsigned cnt, ...)
- Create a list term.
+ Create a list term
Create an ordinary list term of length cnt. Expects
cnt number of arguments (after cnt) of type ERL_NIF_TERM as the
elements of the list. An empty list is returned if cnt is 0.
@@ -987,18 +987,18 @@ typedef enum {
ERL_NIF_TERMenif_make_list7(ErlNifEnv* env, ERL_NIF_TERM e1, ..., ERL_NIF_TERM e7)
ERL_NIF_TERMenif_make_list8(ErlNifEnv* env, ERL_NIF_TERM e1, ..., ERL_NIF_TERM e8)
ERL_NIF_TERMenif_make_list9(ErlNifEnv* env, ERL_NIF_TERM e1, ..., ERL_NIF_TERM e9)
- Create a list term.
+ Create a list term
Create an ordinary list term with length indicated by the
function name. Prefer these functions (macros) over the variadic
enif_make_list to get a compile time error if the number of
arguments does not match.
ERL_NIF_TERMenif_make_list_cell(ErlNifEnv* env, ERL_NIF_TERM head, ERL_NIF_TERM tail)
- Create a list cell.
+ Create a list cell
Create a list cell [head | tail].
ERL_NIF_TERMenif_make_list_from_array(ErlNifEnv* env, const ERL_NIF_TERM arr[], unsigned cnt)
- Create a list term from an array.
+ Create a list term from an array
Create an ordinary list containing the elements of array arr
of length cnt. An empty list is returned if cnt is 0.
@@ -1051,7 +1051,7 @@ typedef enum {
Make a pid term from *pid.
ERL_NIF_TERMenif_make_ref(ErlNifEnv* env)
- Create a reference.
+ Create a reference
Create a reference like erlang:make_ref/0.
ERL_NIF_TERMenif_make_resource(ErlNifEnv* env, void* obj)
@@ -1098,19 +1098,19 @@ typedef enum {
The list_in term must belong to the environment env.
ERL_NIF_TERMenif_make_string(ErlNifEnv* env, const char* string, ErlNifCharEncoding encoding)
- Create a string.
+ Create a string
Create a list containing the characters of the
null-terminated string string with encoding encoding.
ERL_NIF_TERMenif_make_string_len(ErlNifEnv* env, const char* string, size_t len, ErlNifCharEncoding encoding)
- Create a string.
+ Create a string
Create a list containing the characters of the string string with
length len and encoding encoding.
Null-characters are treated as any other characters.
ERL_NIF_TERMenif_make_sub_binary(ErlNifEnv*
env, ERL_NIF_TERM bin_term, size_t pos, size_t size)
- Make a subbinary term.
+ Make a subbinary term
Make a subbinary of binary bin_term, starting at
zero-based position pos with a length of size bytes.
bin_term must be a binary or bitstring and
@@ -1118,7 +1118,7 @@ typedef enum {
bytes in bin_term.
ERL_NIF_TERMenif_make_tuple(ErlNifEnv* env, unsigned cnt, ...)
- Create a tuple term.
+ Create a tuple term
Create a tuple term of arity cnt. Expects
cnt number of arguments (after cnt) of type ERL_NIF_TERM as the
elements of the tuple.
@@ -1132,14 +1132,14 @@ typedef enum {
ERL_NIF_TERMenif_make_tuple7(ErlNifEnv* env, ERL_NIF_TERM e1, ..., ERL_NIF_TERM e7)
ERL_NIF_TERMenif_make_tuple8(ErlNifEnv* env, ERL_NIF_TERM e1, ..., ERL_NIF_TERM e8)
ERL_NIF_TERMenif_make_tuple9(ErlNifEnv* env, ERL_NIF_TERM e1, ..., ERL_NIF_TERM e9)
- Create a tuple term.
+ Create a tuple term
Create a tuple term with length indicated by the
function name. Prefer these functions (macros) over the variadic
enif_make_tuple to get a compile time error if the number of
arguments does not match.
ERL_NIF_TERMenif_make_tuple_from_array(ErlNifEnv* env, const ERL_NIF_TERM arr[], unsigned cnt)
- Create a tuple term from an array.
+ Create a tuple term from an array
Create a tuple containing the elements of array arr
of length cnt.
@@ -1282,18 +1282,18 @@ enif_map_iterator_destroy(env, &iter);
Was previously named enif_get_data.
intenif_realloc_binary(ErlNifBinary* bin, size_t size)
- Change the size of a binary.
+ Change the size of a binary
Change the size of a binary bin. The source binary
may be read-only, in which case it will be left untouched and
a mutable copy is allocated and assigned to *bin. Return true on success,
false if memory allocation failed.
voidenif_release_binary(ErlNifBinary* bin)
- Release a binary.
+ Release a binary
Release a binary obtained from enif_alloc_binary.
voidenif_release_resource(void* obj)
- Release a resource object.
+ Release a resource object
Remove a reference to resource object objobtained from
enif_alloc_resource.
The resource object will be destructed when the last reference is removed.
@@ -1369,12 +1369,12 @@ enif_map_iterator_destroy(env, &iter);
ErlNifPid *enif_self(ErlNifEnv* caller_env, ErlNifPid* pid)
- Get the pid of the calling process.
+ Get the pid of the calling process
Initialize the pid variable *pid to represent the
calling process. Return pid.
intenif_send(ErlNifEnv* env, ErlNifPid* to_pid, ErlNifEnv* msg_env, ERL_NIF_TERM msg)
- Send a message to a process.
+ Send a message to a process
Send a message to a process.
env
--
cgit v1.2.3