Commit 9d829f72 authored by somdoron's avatar somdoron

moving new poller field to the end of the struct

parent 6eddbd98
......@@ -397,8 +397,7 @@ ZMQ_EXPORT int zmq_remove_poller (void *s, void *p);
typedef struct zmq_pollitem_t
{
void *socket;
void *poller;
void *socket;
#if defined _WIN32
SOCKET fd;
#else
......@@ -406,6 +405,7 @@ typedef struct zmq_pollitem_t
#endif
short events;
short revents;
void *poller;
} zmq_pollitem_t;
#define ZMQ_POLLITEMS_DFLT 16
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment