Problem: not all possible errno values were documented (#4078)

Solution: document more possible errno values

Signed-off-by: Arkadiusz Drabczyk <arkadiusz@drabczyk.org>
This commit is contained in:
Arkadiusz Drabczyk 2020-11-09 22:08:51 +01:00
parent b2a0842063
commit d43ae07456
6 changed files with 14 additions and 3 deletions

View File

@ -94,6 +94,8 @@ ERRORS
------
*EINVAL*::
The requested option _option_name_ is unknown.
*EFAULT*::
The provided 'context' is invalid.
EXAMPLE

View File

@ -50,6 +50,8 @@ ERRORS
------
*EINVAL*::
The requested option _option_name_ is unknown.
*EFAULT*::
The provided 'context' is invalid.
EXAMPLE

View File

@ -33,7 +33,12 @@ of the values defined below.
ERRORS
------
No error values are defined for this function.
*EMFILE*::
The limit on the total number of open files has been reached and it
wasn't possible to create a new context.
*EMFILE*::
The limit on the total number of open files in system has been reached
and it wasn't possible to create a new context.
SEE ALSO

View File

@ -54,6 +54,8 @@ ERRORS
------
*EINVAL*::
The requested option _option_name_ is unknown.
*EFAULT*::
The provided 'context' is invalid.
EXAMPLE

View File

@ -65,7 +65,7 @@ RETURN VALUE
------------
The _zmq_proxy()_ function always returns `-1` and 'errno' set to *ETERM* or
*EINTR* (the 0MQ 'context' associated with either of the specified sockets was
terminated).
terminated) or *EFAULT* (the provided 'frontend' or 'backend' was invalid).
EXAMPLE

View File

@ -52,7 +52,7 @@ RETURN VALUE
The _zmq_proxy_steerable()_ function returns 0 if TERMINATE is sent to its
control socket. Otherwise, it returns `-1` and 'errno' set to *ETERM* or
*EINTR* (the 0MQ 'context' associated with either of the specified sockets was
terminated).
terminated) or *EFAULT* (the provided 'frontend' or 'backend' was invalid).
EXAMPLE