2023-10-21 01:50:38 +02:00
|
|
|
= zmq_strerror(3)
|
2010-02-10 16:18:46 +01:00
|
|
|
|
|
|
|
|
2023-10-21 01:50:38 +02:00
|
|
|
== NAME
|
2010-03-09 18:47:31 +01:00
|
|
|
zmq_strerror - get 0MQ error message string
|
2010-02-10 16:18:46 +01:00
|
|
|
|
|
|
|
|
2023-10-21 01:50:38 +02:00
|
|
|
== SYNOPSIS
|
2010-03-09 18:47:31 +01:00
|
|
|
*const char *zmq_strerror (int 'errnum');*
|
2010-02-10 16:18:46 +01:00
|
|
|
|
|
|
|
|
2023-10-21 01:50:38 +02:00
|
|
|
== DESCRIPTION
|
2010-03-09 18:47:31 +01:00
|
|
|
The _zmq_strerror()_ function shall return a pointer to an error message string
|
|
|
|
corresponding to the error number specified by the 'errnum' argument. As 0MQ
|
|
|
|
defines additional error numbers over and above those defined by the operating
|
|
|
|
system, applications should use _zmq_strerror()_ in preference to the standard
|
|
|
|
_strerror()_ function.
|
2010-02-10 16:18:46 +01:00
|
|
|
|
|
|
|
|
2023-10-21 01:50:38 +02:00
|
|
|
== RETURN VALUE
|
2010-03-09 18:47:31 +01:00
|
|
|
The _zmq_strerror()_ function shall return a pointer to an error message
|
|
|
|
string.
|
2010-02-10 16:18:46 +01:00
|
|
|
|
|
|
|
|
2023-10-21 01:50:38 +02:00
|
|
|
== ERRORS
|
2010-02-10 16:18:46 +01:00
|
|
|
No errors are defined.
|
|
|
|
|
|
|
|
|
2023-10-21 01:50:38 +02:00
|
|
|
== EXAMPLE
|
2010-03-09 18:47:31 +01:00
|
|
|
.Displaying an error message when a 0MQ context cannot be initialised
|
2010-02-10 16:18:46 +01:00
|
|
|
----
|
|
|
|
void *ctx = zmq_init (1, 1, 0);
|
|
|
|
if (!ctx) {
|
2010-03-09 18:47:31 +01:00
|
|
|
printf ("Error occurred during zmq_init(): %s\n", zmq_strerror (errno));
|
2010-02-10 16:18:46 +01:00
|
|
|
abort ();
|
|
|
|
}
|
|
|
|
----
|
|
|
|
|
|
|
|
|
2023-10-21 01:50:38 +02:00
|
|
|
== SEE ALSO
|
2023-11-03 11:36:47 +01:00
|
|
|
* xref:zmq.adoc[zmq]
|
2010-02-10 16:18:46 +01:00
|
|
|
|
|
|
|
|
2023-10-21 01:50:38 +02:00
|
|
|
== AUTHORS
|
2013-04-11 18:53:02 +02:00
|
|
|
This page was written by the 0MQ community. To make a change please
|
|
|
|
read the 0MQ Contribution Policy at <http://www.zeromq.org/docs:contributing>.
|
|
|
|
|