|
NAMEnn_reallocmsg - reallocate a messageSYNOPSIS#include <nanomsg/nn.h>void *nn_reallocmsg (void *msg, size_t size); DESCRIPTIONReallocate 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. RETURN VALUEIf 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.ERRORSENOMEMNot enough memory to allocate the message.
EXAMPLEvoid *buf = nn_allocmsg (12, 0); void *newbuf = nn_reallocmsg (buf, 20); nn_freemsg (newbuf); SEE ALSOnn_allocmsg(3) nn_freemsg(3) nanomsg(7)AUTHORSMartin Sustrik <sustrik@250bpm.com>
Visit the GSP FreeBSD Man Page Interface. |