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_REALLOCMSG(3) nanomsg 1.1.5 NN_REALLOCMSG(3)

nn_reallocmsg - reallocate a message

#include <nanomsg/nn.h>

void *nn_reallocmsg (void *msg, size_t size);

Reallocate a message previously allocated by nn_allocmsg(3) or received from a peer using NN_MSG mechanism.

Note that as with the standard realloc, the operation may involve copying the data in the buffer.

If the function succeeds pointer to newly allocated buffer is returned. Otherwise, NULL is returned and errno is set to to one of the values defined below.

ENOMEM
Not enough memory to allocate the message.

void *buf = nn_allocmsg (12, 0);
void *newbuf = nn_reallocmsg (buf, 20);
nn_freemsg (newbuf);

nn_allocmsg(3) nn_freemsg(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.