mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-13 10:52:56 +01:00
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:
parent
b2a0842063
commit
d43ae07456
@ -94,6 +94,8 @@ ERRORS
|
||||
------
|
||||
*EINVAL*::
|
||||
The requested option _option_name_ is unknown.
|
||||
*EFAULT*::
|
||||
The provided 'context' is invalid.
|
||||
|
||||
|
||||
EXAMPLE
|
||||
|
@ -50,6 +50,8 @@ ERRORS
|
||||
------
|
||||
*EINVAL*::
|
||||
The requested option _option_name_ is unknown.
|
||||
*EFAULT*::
|
||||
The provided 'context' is invalid.
|
||||
|
||||
|
||||
EXAMPLE
|
||||
|
@ -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
|
||||
|
@ -54,6 +54,8 @@ ERRORS
|
||||
------
|
||||
*EINVAL*::
|
||||
The requested option _option_name_ is unknown.
|
||||
*EFAULT*::
|
||||
The provided 'context' is invalid.
|
||||
|
||||
|
||||
EXAMPLE
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user