GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
NN_ERRNO(3) nanomsg 1.1.5 NN_ERRNO(3)

nn_errno - retrieve the current errno

#include <nanomsg/nn.h>

int nn_errno (void);

Returns value of errno for the current thread.

On most systems, errno can be accessed directly and this function is not needed. However, on Windows, there are multiple implementations of the CRT library (single-threaded, multi-threaded, release, debug) and each of them has its own instance of errno. Thus, if nanomsg library and the application that uses it link with different versions of the CRT library, they don’t share the same instance of errno. Consequently, error codes set by nanomsg cannot be accessed by the application. To overcome this problem, application can use nn_errno() function to retrieve nanomsg’s value of errno.

Returns value of errno for the current thread.

No errors are defined.

rc = nn_send (s, "ABC", 3, 0);
if (rc < 0)
    printf ("nn_send failed with error code %d\n", nn_errno ());

nn_strerror(3) nanomsg(7)

Martin Sustrik <sustrik@250bpm.com>
2018-10-15  

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.