1. 18 Nov, 2018 1 commit
  2. 10 Aug, 2018 1 commit
  3. 26 May, 2018 1 commit
  4. 22 May, 2018 1 commit
  5. 14 May, 2018 1 commit
  6. 02 Feb, 2018 1 commit
  7. 06 Sep, 2017 3 commits
  8. 05 Sep, 2017 2 commits
  9. 22 Aug, 2017 1 commit
  10. 14 Apr, 2017 1 commit
  11. 11 Apr, 2017 1 commit
  12. 10 Apr, 2017 5 commits
  13. 30 Mar, 2017 1 commit
  14. 05 Dec, 2016 1 commit
    • Luca Boccassi's avatar
      Problem: 4.2.0 won't compile on AIX 7.1 · 57db5f2a
      Luca Boccassi authored
      Solution: restore inclusion of poll.h if using poll before zmq.h as
      it was originally, as AIX redefines the POSIX structures and provides
      compatibility macros.
      Also add alternative aliases for 32 bit AIX's pollitem struct:
        events -> reqevents
        revents -> rtnevents
      57db5f2a
  15. 29 Sep, 2016 2 commits
    • Min RK's avatar
      allow duplicate entries in zmq_poller_poll · fb5a04e2
      Min RK authored
      This should restore full compatibility with earlier zmq_poll behavior.
      
      It complicates things a little bit, as collisions must be detected, and when collisions are found:
      
      - event masks must be merged
      - pollitems, events arrays are no longer co-ordered
      
      Reverts the recent zmq_proxy patch to workaround the lack of repeat-item support in zmq_poll that is now fixed.
      fb5a04e2
    • Min RK's avatar
      avoid duplicate entries in zmq_poll · c636147c
      Min RK authored
      zmq_poller doesn't allow a socket to appear twice
      c636147c
  16. 11 Jun, 2016 1 commit
    • Michael Lutz's avatar
      Problem: Windows performance is not optimal due to select(). · 7a6ff07a
      Michael Lutz authored
      Solution: Provide poll() for Windows as well. This is a build option that
      defaults to off as the resulting binary will only run on Windows Vista or
      newer.
      
      This is not tested with alternative Winsock service providers like VMCI,
      but the documentation for WSAPoll does not mention limitations.
      
      On my local machine, throughput improves by ~10 % (20 simultaneous
      remote_thr workes to one local_thr, 10 byte messages), while latency
      improves by ~30 % (measured with remote/local_lat).
      7a6ff07a
  17. 14 May, 2016 1 commit
  18. 18 Feb, 2016 1 commit
  19. 28 Jan, 2016 1 commit
  20. 07 Jun, 2015 1 commit
  21. 02 Jun, 2015 1 commit
  22. 27 May, 2015 1 commit
  23. 24 May, 2015 1 commit
  24. 01 May, 2015 1 commit
  25. 22 Jan, 2015 1 commit
  26. 17 Feb, 2014 1 commit
    • Olaf Mandel's avatar
      Remove duplicate poller decision making · 48b50cef
      Olaf Mandel authored
      The decision about the poller mechanism to use (select, poll, ...)
      was done twice: once by the build system and once by the code in
      poller.hpp. As the build-system can actually detect the mechanisms
      available, prefer that result to the hard coded defaults in
      poller.hpp.
      
      At the same time, remove the duplicate detection of select() vs.
      poll()-variant from proxy.cpp, signaler.cpp and zmq.cpp.
      
      This patch has not been tested on many build platforms: especially
      the cmake build needs testing / patching. For the other builds,
      hard code the result as these these are all Windows platforms.
      48b50cef
  27. 13 Feb, 2014 2 commits
  28. 28 Jan, 2014 1 commit
  29. 24 Jan, 2014 1 commit
  30. 20 Jan, 2014 1 commit
  31. 08 Jan, 2014 1 commit