mirror of
https://github.com/zeromq/libzmq.git
synced 2025-03-01 10:57:59 +01:00
Merge pull request #4079 from ardrabczyk/errno-fixes
Problem: not all possible errno values were documented (#4078)
This commit is contained in:
commit
c642d0f4ee
@ -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…
x
Reference in New Issue
Block a user