mirror of
https://github.com/zeromq/libzmq.git
synced 2025-11-07 05:58:45 +01:00
problem: zmq_poll is slow because FD is being created on every call
making the creation of FD only when thread safe sockets are in used within the zmq_poller which improve the zmq_poll performance.
This commit is contained in:
@@ -87,7 +87,7 @@ namespace zmq
|
||||
uint32_t tag;
|
||||
|
||||
// Signaler used for thread safe sockets polling
|
||||
signaler_t signaler;
|
||||
signaler_t* signaler;
|
||||
|
||||
typedef struct item_t {
|
||||
socket_base_t *socket;
|
||||
|
||||
Reference in New Issue
Block a user