Skip to content

Commit

Permalink
Merge pull request #4079 from ardrabczyk/errno-fixes
Browse files Browse the repository at this point in the history
Problem: not all possible errno values were documented (#4078)
  • Loading branch information
bluca authored Nov 10, 2020
2 parents b2a0842 + d43ae07 commit c642d0f
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 3 deletions.
2 changes: 2 additions & 0 deletions doc/zmq_ctx_get.txt
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,8 @@ ERRORS
------
*EINVAL*::
The requested option _option_name_ is unknown.
*EFAULT*::
The provided 'context' is invalid.


EXAMPLE
Expand Down
2 changes: 2 additions & 0 deletions doc/zmq_ctx_get_ext.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ ERRORS
------
*EINVAL*::
The requested option _option_name_ is unknown.
*EFAULT*::
The provided 'context' is invalid.


EXAMPLE
Expand Down
7 changes: 6 additions & 1 deletion doc/zmq_ctx_new.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions doc/zmq_ctx_set_ext.txt
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ ERRORS
------
*EINVAL*::
The requested option _option_name_ is unknown.
*EFAULT*::
The provided 'context' is invalid.


EXAMPLE
Expand Down
2 changes: 1 addition & 1 deletion doc/zmq_proxy.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion doc/zmq_proxy_steerable.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c642d0f

Please sign in to comment.